@charset "UTF-8";

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-Thin.woff2") format("woff2"), url("../fonts/Inter18pt-Thin.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/Inter18pt-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-Medium.woff2") format("woff2"), url("../fonts/Inter18pt-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter18pt-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-Bold.woff2") format("woff2"), url("../fonts/Inter18pt-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Medium.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-SemiBold.woff2") format("woff2"), url("../fonts/PlayfairDisplay-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

    body .nav :not(:has(.scrolled:in-view)) {
        background: transparent;
    }

.container {
    width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .nav.scrolled {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .nav .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .nav .nav-container .logo {
            background: #fff;
            padding: 10px;
            display: flex;
            border-radius: 12px;
            outline: none;
        }

            .nav .nav-container .logo a {
                display: flex;
            }

                .nav .nav-container .logo a:focus-visible {
                    outline: none !important;
                }

                .nav .nav-container .logo a img {
                    width: 180px;
                }

        .nav .nav-container .mobile-menu {
            background: #fff;
            border: 0;
            padding: 10px;
            border-radius: 17px;
            display: flex;
        }

        .nav .nav-container .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            background: rgba(76, 38, 139, 0.28);
            padding: 0px 10px 0px 30px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(4px);
            border-radius: 10px;
            position: relative;
        }

            .nav .nav-container .nav-menu.active {
                justify-content: start;
                padding-top: 8rem;
                align-items: start;
                max-width: 100%;
                background: rgba(182, 167, 213, 0.95);
            }

        .nav .nav-container .login-button {
            padding: 1.188rem 3.063rem;
            display: flex;
            background: #7e30ff;
            color: #fff;
            border-radius: 0.625rem;
            -webkit-text-decoration: none;
            text-decoration: none;
            line-height: 1;
            font-size: 1.25rem;
            transition: 0.2s;
        }

        .nav .nav-container .toggle {
            z-index: 999;
            position: relative;
        }

        .nav .nav-container .nav-link {
            color: #fff;
            -webkit-text-decoration: none;
            text-decoration: none;
            font-weight: 400;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

            .nav .nav-container .nav-link:after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #7e30ff 0%, #a855f7 100%);
                transition: width 0.3s ease;
            }

            .nav .nav-container .nav-link:hover:after {
                width: 100%;
            }

/* Video Section */
.video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

    .video-section .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .video-section .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.3) 40%);
        z-index: 1;
    }

    .video-section .video-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 2;
    }

        .video-section .video-content .hero-title {
            font-family: "Playfair Display", serif;
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 600;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(50px);
        }

        .video-section .video-content .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            background: rgba(76, 38, 139, 0.28);
            width: -moz-max-content;
            width: max-content;
            margin: 0 auto;
            padding: 5px 30px;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            border-radius: 10px;
            overflow: hidden;
        }

        

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.horizontal-main {
    width: 100vw;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 80px;
    gap: 30px;
    color: #000;
}

    .horizontal-main .section-content {
        max-width: 1400px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .horizontal-main .content-left,
    .horizontal-main .content-right {
        flex: 1;
    }

    .horizontal-main .content-right {
        position: sticky;
        top: 130px;
    }

    .horizontal-main .content-full {
        width: 100%;
    }

    .horizontal-main .section-number {
        font-size: 120px;
        font-weight: 700;
        color: rgba(126, 48, 255, 0.1);
        line-height: 1;
        margin-bottom: 20px;
        display: block;
    }

    .horizontal-main .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 600;
        margin-bottom: 30px;
        color: #1a1a1a;
    }

    .horizontal-main .section-text {
        font-size: 18px;
        line-height: 1.8;
        color: #000;
        margin-bottom: 0;
    }

    .horizontal-main .service-icon {
        width: -moz-max-content;
        width: max-content;
        height: -moz-max-content;
        height: max-content;
        display: flex;
        align-items: center;
        background: #fff;
        padding: 17px;
        border-radius: 50px;
    }

        .horizontal-main .service-icon img {
            width: 42px;
        }

    .horizontal-main .section-title {
        color: #000;
    }

    .horizontal-main .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .horizontal-main .service-card {
        background: #f2f2f2;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        height:100%;
    }

.cta-buttons {
    display: none !important;
}

        .horizontal-main .service-card a {
            text-decoration: none;
        }

        .horizontal-main .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

    .horizontal-main .service-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .horizontal-main .service-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #000;
    }

    .horizontal-main .service-card p {
        font-size: 16px;
        line-height: 1.6;
        opacity: 0.9;
        color: #000;
    }

/* Horizontal Scroll Container */
.horizontal-container {
    height: 100vh;
    overflow: hidden;
}

    .horizontal-container .horizontal-wrapper {
        display: flex;
        width: 300vw;
        height: 100vh;
    }

        .horizontal-container .horizontal-wrapper .horizontal-section {
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 80px;
        }

            .horizontal-container .horizontal-wrapper .horizontal-section .section-content {
                max-width: 1400px;
                width: 100%;
                display: flex;
                align-items: center;
                gap: 80px;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .content-left,
            .horizontal-container .horizontal-wrapper .horizontal-section .content-right {
                flex: 1;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .content-full {
                width: 100%;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .section-number {
                font-size: 120px;
                font-weight: 700;
                color: rgba(126, 48, 255, 0.1);
                line-height: 1;
                margin-bottom: 20px;
                display: block;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .section-title {
                font-family: "Playfair Display", serif;
                font-size: clamp(2.5rem, 5vw, 4rem);
                font-weight: 600;
                margin-bottom: 30px;
                color: #000;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .section-text {
                font-size: 18px;
                line-height: 1.8;
                color: #666;
                margin-bottom: 0px;
            }

            .horizontal-container .horizontal-wrapper .horizontal-section .text-side a {
                color: #fff;
                padding: 13px 27px;
                display: flex;
                background: #7e30ff;
                width: -moz-max-content;
                width: max-content;
                margin-top: 11px;
                border-radius: 3px;
                line-height: 1;
                font-size: 18px;
                -webkit-text-decoration: none;
                text-decoration: none;
            }

/* Section 1 - About */
.section-1 {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8e4ff 100%);
}

    .section-1 .stats {
        display: flex;
        gap: 40px;
    }

    .section-1 .stat-item {
        text-align: center;
    }

    .section-1 .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #7e30ff;
        margin-bottom: 5px;
    }

    .section-1 .stat-label {
        font-size: 14px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-1 .image-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(126, 48, 255, 0.15);
    }

    .section-1 .section-image {
        width: 100%;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .section-1 .image-container:hover .section-image {
        transform: scale(1.05);
    }

/* Section 2 - Services */
.section-2 {
    background: url(../img/denago-ev-A5mWEfOS0gE-unsplash.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

    .section-2::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        opacity: 0.5;
    }

    .section-2 .content-right {
        z-index: 999;
        position: relative;
    }

        .section-2 .content-right.for-web {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
        }

            .section-2 .content-right.for-web .text-side {
                padding: 10px 20px;
                background: rgba(104, 101, 101, 0.3019607843);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border-radius: 10px;
            }

                .section-2 .content-right.for-web .text-side p {
                    color: #fff;
                }

    .section-2 .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 5vw, 5rem) !important;
        font-weight: 600;
        margin-bottom: 30px;
        color: #fff !important;
    }

/* Section 3 - Portfolio */
.section-3 {
    background: url(../img/toolxox.com-enhanced-nTles.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

    .section-3::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        opacity: 0.5;
    }

    .section-3 .content-right {
        z-index: 999;
        position: relative;
    }

        .section-3 .content-right.for-web {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
        }

            .section-3 .content-right.for-web .text-side {
                padding: 10px 20px;
                background: rgba(104, 101, 101, 0.3019607843);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border-radius: 10px;
            }

                .section-3 .content-right.for-web .text-side p {
                    color: #fff;
                }

    .section-3 .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 5vw, 5rem) !important;
        font-weight: 600;
        margin-bottom: 30px;
        color: #fff !important;
    }

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 100px 0 40px;
}

    .footer .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

        .footer .footer-container .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
        }

            .footer .footer-container .footer-content .footer-title {
                font-family: "Playfair Display", serif;
                font-size: 48px;
                font-weight: 600;
                margin-bottom: 30px;
                line-height: 1.2;
            }

            .footer .footer-container .footer-content .footer-text {
                font-size: 18px;
                line-height: 1.6;
                color: #ccc;
                margin-bottom: 40px;
            }

            .footer .footer-container .footer-content .contact-info {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

                .footer .footer-container .footer-content .contact-info .contact-item {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                }

                    .footer .footer-container .footer-content .contact-info .contact-item .contact-label {
                        font-size: 14px;
                        color: #999;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                    }

                    .footer .footer-container .footer-content .contact-info .contact-item .contact-value {
                        font-size: 18px;
                        font-weight: 500;
                    }

                        .footer .footer-container .footer-content .contact-info .contact-item .contact-value .footer-link,
                        .footer .footer-container .footer-content .contact-info .contact-item .contact-value .social-link {
                            color: #fff;
                            -webkit-text-decoration: none;
                            text-decoration: none;
                            display: flex;
                        }

                        .footer .footer-container .footer-content .contact-info .contact-item .contact-value .link-footer {
                            color: #ccc;
                            -webkit-text-decoration: none;
                            text-decoration: none;
                            font-size: 14px;
                            transition: color 0.3s ease;
                        }

                            .footer .footer-container .footer-content .contact-info .contact-item .contact-value .link-footer:hover {
                                color: #fff;
                            }

            .footer .footer-container .footer-content .contact-form {
                display: flex;
                flex-direction: column;
                gap: 25px;
            }

                .footer .footer-container .footer-content .contact-form .form-group {
                    display: flex;
                    flex-direction: column;
                }

                    .footer .footer-container .footer-content .contact-form .form-group .form-input,
                    .footer .footer-container .footer-content .contact-form .form-group .form-textarea {
                        background: rgba(255, 255, 255, 0.1);
                        border: 1px solid rgba(255, 255, 255, 0.2);
                        border-radius: 10px;
                        padding: 15px 20px;
                        color: #fff;
                        font-size: 16px;
                        transition: all 0.3s ease;
                    }

                        .footer .footer-container .footer-content .contact-form .form-group .form-input:focus,
                        .footer .footer-container .footer-content .contact-form .form-group .form-textarea:focus {
                            outline: none;
                            border-color: #7e30ff;
                            background: rgba(255, 255, 255, 0.15);
                        }

                    .footer .footer-container .footer-content .contact-form .form-group .form-textarea {
                        resize: vertical;
                        min-height: 120px;
                    }

                .footer .footer-container .footer-content .contact-form .form-button {
                    background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
                    border: none;
                    border-radius: 50px;
                    padding: 18px 40px;
                    color: #fff;
                    font-size: 16px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                    .footer .footer-container .footer-content .contact-form .form-button:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 10px 20px rgba(126, 48, 255, 0.3);
                    }

        .footer .footer-container .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 40px;
            border-top: 1px solid #333;
        }

            .footer .footer-container .footer-bottom .footer-logo {
                font-family: "Playfair Display", serif;
                font-size: 24px;
                font-weight: 600;
            }

            .footer .footer-container .footer-bottom .footer-menu-row .footer-links {
                display: flex;
                gap: 30px;
            }

            .footer .footer-container .footer-bottom .footer-menu-row .footer-link,
            .footer .footer-container .footer-bottom .footer-menu-row .social-link {
                color: #fff;
                -webkit-text-decoration: none;
                text-decoration: none;
            }

            .footer .footer-container .footer-bottom .footer-menu-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 50px;
            }

                .footer .footer-container .footer-bottom .footer-menu-row .footer-social {
                    display: flex;
                    gap: 20px;
                    align-items: center;
                }

                    .footer .footer-container .footer-bottom .footer-menu-row .footer-social .social-link {
                        color: #ccc;
                        -webkit-text-decoration: none;
                        text-decoration: none;
                        font-size: 14px;
                        transition: color 0.3s ease;
                        display:flex;
                    }

                        .footer .footer-container .footer-bottom .footer-menu-row .footer-social .social-link:hover {
                            color: #7e30ff;
                        }

.priceing-area {
    padding: 80px 0;
}

    .priceing-area .container {
        width: 1400px;
        margin: 0 auto;
    }

        .priceing-area .container .title-area h2 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.5rem, 5vw, 5rem) !important;
            text-align: center;
        }

        .priceing-area .container .title-area p {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            font-size: 18px;
        }

        .priceing-area .container .priceing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 40px;
            background: #fff;
            box-shadow: 0 0 12px 7px rgba(153, 150, 150, 0.1882352941);
            padding: 10px;
            border-radius: 10px;
        }

            .priceing-area .container .priceing-grid .price-col {
                padding: 10px;
                border-right: 1px solid #7a7a7a;
            }

                .priceing-area .container .priceing-grid .price-col:last-child {
                    border-right: 0;
                }

                .priceing-area .container .priceing-grid .price-col h3 {
                    font-size: clamp(1.5rem, 2vw, 3rem) !important;
                    font-family: "Playfair Display", serif;
                }

                .priceing-area .container .priceing-grid .price-col .price {
                    font-size: clamp(2.5rem, 4vw, 4rem) !important;
                    font-family: "Playfair Display", serif;
                    color: #7e30ff;
                }

                .priceing-area .container .priceing-grid .price-col .deff-pric {
                    font-size: 16px;
                    text-transform: capitalize;
                }

                .priceing-area .container .priceing-grid .price-col ul {
                    margin-top: 20px;
                    list-style: none;
                    list-style-position: inside;
                }

                    .priceing-area .container .priceing-grid .price-col ul li {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                    }

                        .priceing-area .container .priceing-grid .price-col ul li::before {
                            content: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="$none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path opacity="0.5" d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" fill="%238f32f6"></path><path d="M16.0303 8.96967C16.3232 9.26256 16.3232 9.73744 16.0303 10.0303L11.0303 15.0303C10.7374 15.3232 10.2626 15.3232 9.96967 15.0303L7.96967 13.0303C7.67678 12.7374 7.67678 12.2626 7.96967 11.9697C8.26256 11.6768 8.73744 11.6768 9.03033 11.9697L10.5 13.4393L12.7348 11.2045L14.9697 8.96967C15.2626 8.67678 15.7374 8.67678 16.0303 8.96967Z" fill="%238f32f6"></path></g></svg>');
                            width: 20px;
                            height: 20px;
                        }

                .priceing-area .container .priceing-grid .price-col .select-plan {
                    width: 100%;
                    padding: 10px;
                    margin-top: 26px;
                    background: transparent;
                    border: 2px solid #7a7a7a;
                    border-radius: 6px;
                    font-size: 16px;
                    color: #7a7a7a;
                    cursor: pointer;
                }

/*Login Webpage*/
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

    .bg-animation .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(126, 48, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

        .bg-animation .floating-shape.shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation: float1 20s ease-in-out infinite;
        }

        .bg-animation .floating-shape.shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation: float2 25s ease-in-out infinite;
        }

        .bg-animation .floating-shape.shape-3 {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 30%;
            animation: float3 30s ease-in-out infinite;
        }

        .bg-animation .floating-shape.shape-4 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation: float4 22s ease-in-out infinite;
        }

        .bg-animation .floating-shape.shape-5 {
            width: 120px;
            height: 120px;
            top: 80%;
            left: 60%;
            animation: float5 28s ease-in-out infinite;
        }

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -10px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-40px, 30px) rotate(120deg);
    }

    66% {
        transform: translate(20px, -40px) rotate(240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 30px) scale(1.2);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -40px) rotate(-90deg);
    }

    50% {
        transform: translate(-30px, -20px) rotate(-180deg);
    }

    75% {
        transform: translate(40px, 10px) rotate(-270deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-25px, -35px) scale(0.8) rotate(180deg);
    }
}
/* Login Container */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
}

    .login-container .login-wrapper {
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
        max-width: 1000px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }

        .login-container .login-wrapper .login-left {
            background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
            color: #fff;
            padding: 60px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

            .login-container .login-wrapper .login-left:before {
                content: "";
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation: rotate 20s linear infinite;
            }

            .login-container .login-wrapper .login-left .welcome-content {
                text-align: center;
                position: relative;
                z-index: 2;
            }

            .login-container .login-wrapper .login-left .welcome-icon {
                margin-bottom: 30px;
            }

                .login-container .login-wrapper .login-left .welcome-icon .icon-circle {
                    width: 80px;
                    height: 80px;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto;
                    -webkit-backdrop-filter: blur(10px);
                    backdrop-filter: blur(10px);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                }

            .login-container .login-wrapper .login-left .welcome-title {
                font-family: "Playfair Display", serif;
                font-size: 42px;
                font-weight: 600;
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .login-container .login-wrapper .login-left .welcome-subtitle {
                font-size: 18px;
                opacity: 0.9;
                margin-bottom: 40px;
                line-height: 1.6;
            }

            .login-container .login-wrapper .login-left .features-list {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

                .login-container .login-wrapper .login-left .features-list .feature-item {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    background: rgba(255, 255, 255, 0.1);
                    padding: 15px 20px;
                    border-radius: 12px;
                    -webkit-backdrop-filter: blur(10px);
                    backdrop-filter: blur(10px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    transition: transform 0.3s ease;
                }

                    .login-container .login-wrapper .login-left .features-list .feature-item:hover {
                        transform: translateX(10px);
                    }

                    .login-container .login-wrapper .login-left .features-list .feature-item .feature-icon {
                        font-size: 24px;
                    }

        .login-container .login-wrapper .login-right {
            padding: 60px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .login-container .login-wrapper .login-right .login-form-container {
                width: 100%;
                max-width: 400px;
            }

                .login-container .login-wrapper .login-right .login-form-container .form-header {
                    text-align: center;
                    margin-bottom: 40px;
                }

                    .login-container .login-wrapper .login-right .login-form-container .form-header .form-title {
                        font-family: "Playfair Display", serif;
                        font-size: 32px;
                        font-weight: 600;
                        color: #1a1a1a;
                        margin-bottom: 10px;
                    }

                    .login-container .login-wrapper .login-right .login-form-container .form-header .form-subtitle {
                        color: #666;
                        font-size: 16px;
                    }

                .login-container .login-wrapper .login-right .login-form-container .login-form {
                    display: flex;
                    flex-direction: column;
                    gap: 25px;
                }

                    .login-container .login-wrapper .login-right .login-form-container .login-form .form-group {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                    }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .form-label {
                            font-weight: 500;
                            color: #333;
                            font-size: 14px;
                        }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper {
                            position: relative;
                        }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper .form-input {
                                width: 100%;
                                padding: 16px 50px 16px 16px;
                                border: 2px solid #e1e5e9;
                                border-radius: 12px;
                                font-size: 16px;
                                transition: all 0.3s ease;
                                background: #fff;
                            }

                                .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper .form-input:focus {
                                    outline: none;
                                    border-color: #7e30ff;
                                    box-shadow: 0 0 0 3px rgba(126, 48, 255, 0.1);
                                }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper .input-icon {
                                position: absolute;
                                right: 16px;
                                top: 50%;
                                transform: translateY(-50%);
                                color: #999;
                                pointer-events: none;
                            }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper .password-toggle {
                                position: absolute;
                                right: 16px;
                                top: 50%;
                                transform: translateY(-50%);
                                background: none;
                                border: none;
                                cursor: pointer;
                                color: #999;
                                padding: 4px;
                                border-radius: 4px;
                                transition: color 0.3s ease;
                            }

                                .login-container .login-wrapper .login-right .login-form-container .login-form .form-group .input-wrapper .password-toggle:hover {
                                    color: #7e30ff;
                                }

                    .login-container .login-wrapper .login-right .login-form-container .login-form .form-options {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            cursor: pointer;
                            font-size: 14px;
                        }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper input[type=checkbox] {
                                display: none;
                            }

                                .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper input[type=checkbox]:checked + .checkmark {
                                    background: #7e30ff;
                                    border-color: #7e30ff;
                                }

                                    .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper input[type=checkbox]:checked + .checkmark:after {
                                        content: "";
                                        position: absolute;
                                        left: 5px;
                                        top: 2px;
                                        width: 4px;
                                        height: 8px;
                                        border: solid #fff;
                                        border-width: 0 2px 2px 0;
                                        transform: rotate(45deg);
                                    }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper .checkmark {
                                width: 18px;
                                height: 18px;
                                border: 2px solid #e1e5e9;
                                border-radius: 4px;
                                position: relative;
                                transition: all 0.3s ease;
                            }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .form-options .checkbox-wrapper .checkbox-text {
                                color: #666;
                            }

                    .login-container .login-wrapper .login-right .login-form-container .login-form .login-button {
                        background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
                        color: #fff;
                        border: none;
                        padding: 16px 24px;
                        border-radius: 12px;
                        font-size: 16px;
                        font-weight: 600;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        position: relative;
                        overflow: hidden;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 10px;
                    }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .login-button:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 8px 25px rgba(126, 48, 255, 0.3);
                        }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .login-button:active {
                            transform: translateY(0);
                        }

                        .login-container .login-wrapper .login-right .login-form-container .login-form .login-button .button-loader {
                            display: none;
                            gap: 4px;
                        }

                            .login-container .login-wrapper .login-right .login-form-container .login-form .login-button .button-loader .loader-dot {
                                width: 6px;
                                height: 6px;
                                background: #fff;
                                border-radius: none;
                                animation: bounce 1.4s ease-in-out infinite both;
                            }

                                .login-container .login-wrapper .login-right .login-form-container .login-form .login-button .button-loader .loader-dot:nth-child(1) {
                                    animation-delay: -0.32s;
                                }

                                .login-container .login-wrapper .login-right .login-form-container .login-form .login-button .button-loader .loader-dot:nth-child(2) {
                                    animation-delay: -0.16s;
                                }

/* Left Side - Welcome Content */
.back-home {
    background: #7e30ff;
    padding: 10px 20px;
    border-radius: 10px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Right Side - Login Form */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 2000;
    opacity: 0;
}

.success-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.success-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0;
}

.success-content p {
    color: #666;
    margin: 0;
}

/*About Us*/
/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f2f2f2;
    overflow: hidden;
}

    .hero-section.detail-hero {
        min-height: 80vh;
    }

        .hero-section.detail-hero .hero-content {
            max-width: 780px;
        }

    .hero-section :has(.product-main) {
        padding: 14rem 0 5rem;
    }

        .hero-section :has(.product-main) .hero-text {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .hero-section :has(.product-main) .hero-subtitle {
            margin-bottom: 0 !important;
        }

        .hero-section :has(.product-main) .btn-part {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

            .hero-section :has(.product-main) .btn-part a {
                padding: 15px 30px;
                display: inline-flex;
                text-decoration: none;
                border-radius: 50px;
            }

                .hero-section :has(.product-main) .btn-part a:first-child {
                    background: rgb(76, 38, 139);
                    color: #fff;
                    border: 2px solid rgb(192, 158, 249);
                }

                .hero-section :has(.product-main) .btn-part a:last-child {
                    color: rgb(76, 38, 139);
                    background: #fff;
                    border: 2px solid rgb(192, 158, 249);
                }

    .hero-section .hero-background {
        position: absolute;
        background: url(../img/toolxox.com-bTDW1.jpg);
        background-size: cover;
        background-position: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

        .hero-section .hero-background .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(205, 205, 205, 0.2) 0%, rgba(85, 247, 241, 0.1) 100%);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

            .hero-section .hero-background .floating-element.element-1 {
                width: 300px;
                height: 300px;
                top: 10%;
                left: 5%;
                animation: float1 20s ease-in-out infinite;
            }

            .hero-section .hero-background .floating-element.element-2 {
                width: 200px;
                height: 200px;
                top: 60%;
                right: 10%;
                animation: float2 25s ease-in-out infinite;
            }

            .hero-section .hero-background .floating-element.element-3 {
                width: 150px;
                height: 150px;
                top: 30%;
                right: 30%;
                animation: float3 30s ease-in-out infinite;
            }

            .hero-section .hero-background .floating-element.element-4 {
                width: 100px;
                height: 100px;
                bottom: 20%;
                left: 20%;
                animation: float4 22s ease-in-out infinite;
            }

    .hero-section .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        max-width: 1200px;
        padding: 40px;
        background: rgba(0, 0, 0, 0.21);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 50px;
    }

        .hero-section .hero-content .hero-text .hero-label {
            display: inline-block;
            background: rgba(126, 48, 255, 0.14);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-section .hero-content .hero-text .hero-title {
            font-family: "Playfair Display", serif;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .hero-section .hero-content .hero-text .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 400;
            margin-bottom: 0px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-section .hero-content .hero-text .product-main {
            display: flex;
            align-items: center;
        }

            .hero-section .hero-content .hero-text .product-main .product-main-title {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: start;
            }

                .hero-section .hero-content .hero-text .product-main .product-main-title .hero-title {
                    font-size: clamp(2rem, 8vw, 3rem);
                    text-align: left;
                }

            .hero-section .hero-content .hero-text .product-main .product-main-text {
                flex: 1;
            }

        .hero-section .hero-content .hero-text .video-main {
            width: 768px;
            margin: 0 auto;
            position: relative;
        }

            .hero-section .hero-content .hero-text .video-main video {
                width: 100%;
                border-radius: 50px;
            }

            .hero-section .hero-content .hero-text .video-main .platBtn {
                position: absolute;
                width: 80px;
                height: 80px;
                font-size: 26px;
                border-radius: 50%;
                border: 1px solid #fff;
                outline: none;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                background: rgba(255, 255, 255, 0.4509803922);
                color: #fff;
                cursor: pointer;
            }

.tab-main-area {
    padding: 40px 0 0;
}

    .tab-main-area .tab-title {
        font-size: 28px;
        text-align: center;
    }

    .tab-main-area .tab-sub-title {
        width: -moz-max-content;
        width: max-content;
        margin: 0 auto;
        background: #7e30ff;
        color: #fff;
        padding: 6px 19px;
        border-radius: 50px;
    }

    .tab-main-area .tab-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

        .tab-main-area .tab-buttons .tab-btn {
            padding: 12px 17px;
            border: 0;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
        }

            .tab-main-area .tab-buttons .tab-btn.tab-active {
                background: #7e30ff;
                color: #fff;
            }

    .tab-main-area .inner-tab-area {
        margin-top: 40px;
    }

        .tab-main-area .inner-tab-area .tab-content .tab-panel {
            display: none;
        }

            .tab-main-area .inner-tab-area .tab-content .tab-panel.panel-active {
                display: block;
            }

            .tab-main-area .inner-tab-area .tab-content .tab-panel .product-video {
                margin: 40px 0 0;
            }

                .tab-main-area .inner-tab-area .tab-content .tab-panel .product-video .video-main {
                    width: 768px;
                    margin: 0 auto;
                    display: flex;
                    position: relative;
                }

                    .tab-main-area .inner-tab-area .tab-content .tab-panel .product-video .video-main video {
                        width: 100%;
                    }

                    .tab-main-area .inner-tab-area .tab-content .tab-panel .product-video .video-main button {
                        position: absolute;
                        top: 15px;
                        right: 15px;
                        width: 50px;
                        height: 50px;
                        font-size: 26px;
                        border-radius: 50%;
                        border: 1px solid #fff;
                        outline: none;
                        background: rgba(255, 255, 255, 0.4509803922);
                        color: #fff;
                        cursor: pointer;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        line-height: 1;
                    }

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6705882353);
    z-index: 9999;
    display: none;
}

    .popup-overlay .popup-content {
        width: 1200px;
        position: relative;
    }

        .popup-overlay .popup-content video {
            width: 100%;
            border-radius: 50px;
        }

        .popup-overlay .popup-content .close-btn {
            position: absolute;
            right: 30px;
            top: 30px;
            width: 60px;
            height: 60px;
            font-size: 30px;
            border-radius: 50%;
            border: 1px solid #fff;
            background: rgba(255, 255, 255, 0.5490196078);
            color: #fff;
            z-index: 999;
            cursor: pointer;
        }

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-30px, 40px) rotate(180deg);
    }

    75% {
        transform: translate(-40px, -20px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-60px, 40px) rotate(120deg);
    }

    66% {
        transform: translate(30px, -50px) rotate(240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(70px, 50px) scale(1.3);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -50px) rotate(-90deg);
    }

    50% {
        transform: translate(-40px, -30px) rotate(-180deg);
    }

    75% {
        transform: translate(50px, 20px) rotate(-270deg);
    }
}
/* Story Section */
.story-section {
    padding: 120px 0;
    background: #f8f9fa;
}

    .story-section .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }

        .story-section .story-content .story-left .story-image, .story-section .story-content .overview-section .overview-content .overview-right .story-image, .overview-section .overview-content .story-section .story-content .overview-right .story-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

            .story-section .story-content .story-left .story-image img, .story-section .story-content .overview-section .overview-content .overview-right .story-image img, .overview-section .overview-content .story-section .story-content .overview-right .story-image img {
                width: 100%;
                height: 600px;
                -o-object-fit: cover;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .story-section .story-content .story-left .story-image .image-overlay, .story-section .story-content .overview-section .overview-content .overview-right .story-image .image-overlay, .overview-section .overview-content .story-section .story-content .overview-right .story-image .image-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(216, 214, 219, 0.3) 0%, rgba(249, 242, 255, 0.2) 100%);
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .story-section .story-content .story-left .story-image:hover .image-overlay, .story-section .story-content .overview-section .overview-content .overview-right .story-image:hover .image-overlay, .overview-section .overview-content .story-section .story-content .overview-right .story-image:hover .image-overlay {
                opacity: 1;
            }

            .story-section .story-content .story-left .story-image:hover img, .story-section .story-content .overview-section .overview-content .overview-right .story-image:hover img, .overview-section .overview-content .story-section .story-content .overview-right .story-image:hover img {
                transform: scale(1.05);
            }

        .story-section .story-content .story-right .section-label {
            display: inline-block;
            background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .story-section .story-content .story-right .section-title {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            margin-bottom: 30px;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .story-section .story-content .story-right .story-text {
            margin-bottom: 40px;
        }

            .story-section .story-content .story-right .story-text p {
                font-size: 18px;
                line-height: 1.8;
                color: #666;
                margin-bottom: 20px;
            }

        .story-section .story-content .story-right .story-timeline {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

            .story-section .story-content .story-right .story-timeline .timeline-item {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 20px;
                background: #fff;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }

                .story-section .story-content .story-right .story-timeline .timeline-item:hover {
                    transform: translateX(10px);
                }

                .story-section .story-content .story-right .story-timeline .timeline-item .timeline-year {
                    background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
                    color: #fff;
                    padding: 10px 15px;
                    border-radius: 10px;
                    font-weight: 600;
                    font-size: 14px;
                    min-width: 60px;
                    text-align: center;
                }

                .story-section .story-content .story-right .story-timeline .timeline-item .timeline-content h4 {
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 5px;
                    color: #1a1a1a;
                }

                .story-section .story-content .story-right .story-timeline .timeline-item .timeline-content p {
                    font-size: 16px;
                    color: #666;
                    margin: 0;
                }

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #fff;
}

    .values-section .values-header {
        text-align: center;
        margin-bottom: 80px;
    }

        .values-section .values-header .section-subtitle {
            font-size: 20px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

    .values-section .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

        .values-section .values-grid .value-card {
            background: #f8f9fa;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

            .values-section .values-grid .value-card .value-icon {
                color: #7e30ff;
                margin-bottom: 30px;
                transition: transform 0.3s ease;
            }

                .values-section .values-grid .value-card .value-icon span {
                    font-size: 60px;
                }

            .values-section .values-grid .value-card:hover {
                transform: translateY(-10px);
                border-color: #7e30ff;
                box-shadow: 0 20px 40px rgba(126, 48, 255, 0.1);
            }

                .values-section .values-grid .value-card:hover .value-icon {
                    transform: scale(1.1);
                }

            .values-section .values-grid .value-card .value-title {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 20px;
                color: #1a1a1a;
            }

            .values-section .values-grid .value-card .value-description {
                font-size: 16px;
                line-height: 1.6;
                color: #666;
            }

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
    color: #fff;
}

    .team-section .team-header {
        text-align: center;
        margin-bottom: 80px;
    }

        .team-section .team-header .section-title,
        .team-section .team-header .section-subtitle {
            color: #fff;
        }

    .team-section .team-grid {
        display: flex;
        gap: 40px;
    }

        .team-section .team-grid .team-member {
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            min-width: 20%;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

            .team-section .team-grid .team-member:hover {
                transform: translateY(-10px);
            }

            .team-section .team-grid .team-member .member-image {
                position: relative;
                width: 150px;
                height: 150px;
                margin: 0 auto 30px;
                border-radius: 50%;
                overflow: hidden;
                border: 4px solid rgba(255, 255, 255, 0.3);
            }

                .team-section .team-grid .team-member .member-image img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                    transition: transform 0.3s ease;
                }

                .team-section .team-grid .team-member .member-image .member-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(126, 48, 255, 0.8);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                }

                    .team-section .team-grid .team-member .member-image .member-overlay .member-social {
                        display: flex;
                        gap: 15px;
                    }

                        .team-section .team-grid .team-member .member-image .member-overlay .member-social .social-link {
                            color: #fff;
                            width: 40px;
                            height: 40px;
                            background: rgba(255, 255, 255, 0.2);
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: all 0.3s ease;
                        }

                            .team-section .team-grid .team-member .member-image .member-overlay .member-social .social-link:hover {
                                background: #fff;
                                color: #7e30ff;
                                transform: scale(1.1);
                            }

                .team-section .team-grid .team-member .member-image:hover .member-overlay {
                    opacity: 1;
                }

                .team-section .team-grid .team-member .member-image:hover img {
                    transform: scale(1.1);
                }

            .team-section .team-grid .team-member .member-info .member-name {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            .team-section .team-grid .team-member .member-info .member-role {
                font-size: 16px;
                margin-bottom: 15px;
                font-weight: 500;
            }

            .team-section .team-grid .team-member .member-info .member-bio {
                font-size: 14px;
                line-height: 1.6;
                opacity: 0.9;
            }

/* Culture Section */
.culture-section {
    padding: 120px 0;
    background: #f8f9fa;
}

    .culture-section .culture-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

        .culture-section .culture-content .culture-left .section-text {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
        }

        .culture-section .culture-content .culture-left .culture-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

            .culture-section .culture-content .culture-left .culture-features .culture-feature {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 25px;
                background: white;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }

                .culture-section .culture-content .culture-left .culture-features .culture-feature:hover {
                    transform: translateX(10px);
                }

                .culture-section .culture-content .culture-left .culture-features .culture-feature .feature-icon {
                    font-size: 32px;
                    min-width: 50px;
                }

                .culture-section .culture-content .culture-left .culture-features .culture-feature .feature-content h4 {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 8px;
                    color: #1a1a1a;
                }

                .culture-section .culture-content .culture-left .culture-features .culture-feature .feature-content p {
                    font-size: 16px;
                    color: #666;
                    line-height: 1.5;
                    margin: 0;
                }

        .culture-section .culture-content .culture-right .culture-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

            .culture-section .culture-content .culture-right .culture-gallery .gallery-item {
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
            }

                .culture-section .culture-content .culture-right .culture-gallery .gallery-item:hover {
                    transform: scale(1.05);
                }

                .culture-section .culture-content .culture-right .culture-gallery .gallery-item img {
                    width: 100%;
                    height: 200px;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

                .culture-section .culture-content .culture-right .culture-gallery .gallery-item:nth-child(1) {
                    -ms-grid-column: 1;
                    -ms-grid-column-span: 2;
                    grid-column: 1/3;
                }

                    .culture-section .culture-content .culture-right .culture-gallery .gallery-item:nth-child(1) img {
                        height: 250px;
                    }

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #7e30ff 100%);
    color: #fff;
    text-align: center;
}

    .cta-section .cta-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 600;
        margin-bottom: 30px;
    }

    .cta-section .cta-text {
        font-size: 20px;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
        line-height: 1.6;
    }

    .cta-section .cta-buttons {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .cta-section .cta-buttons .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            -webkit-text-decoration: none;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

            .cta-section .cta-buttons .cta-button.primary {
                background: #fff;
                color: #7e30ff;
            }

                .cta-section .cta-buttons .cta-button.primary:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
                }

            .cta-section .cta-buttons .cta-button.secondary {
                background: transparent;
                color: #fff;
                border: 2px solid #fff;
            }

                .cta-section .cta-buttons .cta-button.secondary:hover {
                    background: #fff;
                    color: #7e30ff;
                    transform: translateY(-3px);
                }

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.1;
}

.overview-section {
    padding: 120px 0;
    background: #f8f9fa;
}

    .overview-section .section-label {
        display: inline-block;
        background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .overview-section .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 600;
        margin-bottom: 30px;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .overview-section .section-text {
        font-size: 18px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 40px;
    }

    .overview-section .section-subtitle {
        font-size: 20px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .overview-section .overview-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: self-start;
    }

        .overview-section .overview-content .overview-left .key-benefits {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

            .overview-section .overview-content .overview-left .key-benefits .benefit-item {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 25px;
                background: white;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }

                .overview-section .overview-content .overview-left .key-benefits .benefit-item:hover {
                    transform: translateX(10px);
                }

                .overview-section .overview-content .overview-left .key-benefits .benefit-item .benefit-content h4 {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 8px;
                    color: #1a1a1a;
                }

                .overview-section .overview-content .overview-left .key-benefits .benefit-item .benefit-content p {
                    font-size: 16px;
                    color: #666;
                    line-height: 1.5;
                    margin: 0;
                }

        .overview-section .overview-content .overview-right .overview-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

            .overview-section .overview-content .overview-right .overview-image img {
                width: 100%;
                height: 500px;
                -o-object-fit: cover;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .overview-section .overview-content .overview-right .overview-image .image-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(126, 48, 255, 0.8);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .overview-section .overview-content .overview-right .overview-image:hover .image-overlay {
                opacity: 1;
            }

            .overview-section .overview-content .overview-right .overview-image:hover img {
                transform: scale(1.05);
            }

            .overview-section .overview-content .overview-right .overview-image .play-button {
                width: 100px;
                height: 100px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.3);
                transition: transform 0.3s ease;
            }

                .overview-section .overview-content .overview-right .overview-image .play-button:hover {
                    transform: scale(1.1);
                }

/* Overview Section */
/* Features Section */
.features-section {
    padding: 120px 0;
    background: #fff;
}

    .features-section .features-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .features-section .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

        .features-section .features-grid .feature-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

            .features-section .features-grid .feature-card:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, #7e30ff 0%, #a855f7 100%);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .features-section .features-grid .feature-card:hover {
                transform: translateY(-10px);
                border-color: #7e30ff;
                box-shadow: 0 20px 40px rgba(126, 48, 255, 0.1);
            }

                .features-section .features-grid .feature-card:hover::before {
                    transform: scaleX(1);
                }

            .features-section .features-grid .feature-card .feature-icon {
                font-size: 48px;
                margin-bottom: 25px;
                display: block;
            }

            .features-section .features-grid .feature-card .feature-title {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 15px;
                color: #1a1a1a;
            }

            .features-section .features-grid .feature-card .feature-description {
                font-size: 16px;
                line-height: 1.6;
                color: #666;
                margin-bottom: 25px;
            }

            .features-section .features-grid .feature-card .feature-details ul {
                list-style: none;
                padding: 0;
            }

                .features-section .features-grid .feature-card .feature-details ul li {
                    padding: 8px 0;
                    color: #666;
                    position: relative;
                    padding-left: 25px;
                }

                    .features-section .features-grid .feature-card .feature-details ul li::before {
                        content: "✓";
                        position: absolute;
                        left: 0;
                        color: #7e30ff;
                        font-weight: bold;
                    }

/* Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #7e30ff 0%, #a855f7 100%);
    color: #fff;
}

    .process-section .section-title {
        color: #fff;
    }

    .process-section .section-subtitle {
        color: #fff;
    }

    .process-section .process-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .process-section .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
    }

        .process-section .process-timeline .process-step {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

            .process-section .process-timeline .process-step:hover {
                transform: translateX(20px);
            }

            .process-section .process-timeline .process-step .step-number {
                font-size: 48px;
                font-weight: 700;
                color: rgba(255, 255, 255, 0.3);
                min-width: 80px;
            }

            .process-section .process-timeline .process-step .step-title {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 15px;
            }

            .process-section .process-timeline .process-step .step-description {
                font-size: 16px;
                line-height: 1.6;
                margin-bottom: 15px;
                opacity: 0.9;
            }

            .process-section .process-timeline .process-step .step-duration {
                font-size: 14px;
                color: #a855f7;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #fff;
}

    .testimonials-section .testimonials-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .testimonials-section .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

        .testimonials-section .testimonials-grid .testimonial-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

            .testimonials-section .testimonials-grid .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .testimonials-section .testimonials-grid .testimonial-card .testimonial-content {
                margin-bottom: 30px;
            }

                .testimonials-section .testimonials-grid .testimonial-card .testimonial-content .quote-icon {
                    font-size: 48px;
                    color: #7e30ff;
                    margin-bottom: 20px;
                    font-family: serif;
                }

                .testimonials-section .testimonials-grid .testimonial-card .testimonial-content .testimonial-text {
                    font-size: 18px;
                    line-height: 1.6;
                    color: #333;
                    font-style: italic;
                }

            .testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
                display: flex;
                align-items: center;
                gap: 20px;
            }

                .testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-image {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

                .testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-name {
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 5px;
                    color: #1a1a1a;
                }

                .testimonials-section .testimonials-grid .testimonial-card .testimonial-author .author-title {
                    font-size: 14px;
                    color: #666;
                    margin: 0;
                }

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #7e30ff 100%);
    color: #fff;
    text-align: center;
}

    .cta-section .cta-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 600;
        margin-bottom: 30px;
    }

    .cta-section .cta-text {
        font-size: 20px;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
        line-height: 1.6;
    }

    .cta-section .cta-buttons {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

        .cta-section .cta-buttons .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            -webkit-text-decoration: none;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
        }

            .cta-section .cta-buttons .cta-button.primary {
                background: #fff;
                color: #7e30ff;
            }

                .cta-section .cta-buttons .cta-button.primary:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
                }

            .cta-section .cta-buttons .cta-button.secondary {
                background: transparent;
                color: #fff;
                border: 2px solid #fff;
            }

                .cta-section .cta-buttons .cta-button.secondary:hover {
                    background: #fff;
                    color: #7e30ff;
                    transform: translateY(-3px);
                }

    .cta-section .cta-features {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .cta-section .cta-features .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

            .cta-section .cta-features .cta-feature .feature-icon {
                color: #a855f7;
                font-weight: bold;
            }

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 101;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu li a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-menu li a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: #e74c3c;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

.menu-main {
    display: none;
}

.size-40 {
    font-size: 40px;
}

.size-60 {
    font-size: 60px;
}

.size-20 {
    font-size: 20px;
}

/*------*/
.size-36 {
    font-size: 36px;
}

.benefit-icon span {
    color: #7e30ff;
}

.icon-dark {
    color: #7e30ff;
}

.menu {
    font-size: 36px;
    color: #7e30ff;
}

.meegamenu > a {
    line-height: 78px;
}

.submenu {
    display: none;
}

.hover-on .submenu {
    display: block;
    position: absolute;
    right: 0;
    top: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8784313725);
    padding: 10px;
    box-shadow: 0px 0px 12px 1px rgba(227, 227, 227, 0.4901960784);
}

.p-cards-main {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.nav:has(.hover-on) {
    background: #fff;
}

    .nav:has(.hover-on) .nav-menu > a,
    .hover-on > a {
        color: #7e30ff !important;
    }

    .nav:has(.hover-on) .nav-menu {
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

        .nav:has(.hover-on) .nav-menu > a.login-button {
            color: #fff !important;
        }

.p-cards-main a {
    padding: 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 300px;
    text-decoration: none;
    color: #7e30ff;
}

.menu-title-area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon {
    display: flex;
}

.p-cards-main h4 {
    color: #000;
    font-size: 16px;
    line-height: 1.3;
}

.p-cards-main p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6588235294);
}

.tab-area {
    padding: 120px 0;
}

    .tab-area .section-title-inner {
        font-size: 42px;
        text-align: center;
    }

    .tab-area .page-menu .menu-spi {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
        background: #f3f3f3;
        border-radius: 50px;
    }

        .tab-area .page-menu .menu-spi li a {
            text-decoration: none;
            padding: 15px 30px;
            display: flex;
            color: #000;
        }

.col-main {
    display: flex;
}

    .col-main .col-1-2 {
        flex: 1;
        width: 50%;
    }

        .col-main .col-1-2 .video-main {
            position: relative;
        }

            .col-main .col-1-2 .video-main video {
                width: 100%;
            }

            .col-main .col-1-2 .video-main .platBtn {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 26px;
                border-radius: 50%;
                border: 1px solid #fff;
                outline: none;
                background: rgba(255, 255, 255, 0.4509803922);
                color: #fff;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
            }

        .col-main .col-1-2 .cont-grp {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 80px;
        }

            .col-main .col-1-2 .cont-grp li::marker {
                color: #7e30ff;
                font-size: 25px;
                line-height: 1;
            }

            .col-main .col-1-2 .cont-grp .btn-grp {
                display: flex;
                gap: 30px;
                margin-top: 20px;
            }

                .col-main .col-1-2 .cont-grp .btn-grp .hilight {
                    padding: 12px 27px;
                    border: 0;
                    border-radius: 50px;
                    cursor: pointer;
                    font-size: 16px;
                    display: flex;
                    text-decoration: none;
                    background: #7e30ff;
                    color: #fff;
                }

                .col-main .col-1-2 .cont-grp .btn-grp .text-link {
                    padding: 12px 27px;
                    border: 0;
                    border-radius: 50px;
                    cursor: pointer;
                    font-size: 16px;
                    display: flex;
                    text-decoration: none;
                    background: transparent;
                    color: #7e30ff;
                }

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

    .step.active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.4s cubic-bezier(0.7, 0.3, 0.4, 1);
    }

.question {
    font-weight: 700;
    font-size: 1.37rem;
    margin-bottom: 26px;
    color: #3a0ca3;
    letter-spacing: -0.1px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

    .options.grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-bottom: 34px;
    }

label.option-box {
    border-radius: 15px;
    border: 2px solid #d7d7e2;
    padding: 11px 18px;
    min-width: 128px;
    min-height: 46px;
    background: #f5f5f7;
    font-weight: 600;
    color: #5c4f97;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.22s cubic-bezier(0.65, 0.24, 0.22, 1.04);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    font-size: 1rem;
    margin-bottom: 4px;
    box-shadow: 0 0 0 rgba(162, 123, 250, 0);
}

    label.option-box.selected {
        background: linear-gradient(90deg, #a27bfa 0%, #6612c8 100%);
        color: #fff;
        border-color: #6612c8;
        box-shadow: 0 6px 22px 0 rgba(162, 123, 250, 0.2666666667);
    }

        label.option-box.selected .option-label {
            font-weight: 700;
            color: #fff;
            text-shadow: 0 4px 13px rgba(162, 123, 250, 0.4666666667), 0 1px 1px rgba(102, 18, 200, 0.4666666667);
        }

    label.option-box:hover {
        box-shadow: 0 8px 22px rgba(162, 123, 250, 0.18);
        transform: scale(1.05);
        border-color: #a27bfa;
        color: #3a0ca3;
        z-index: 1;
    }

input[type=radio] {
    position: absolute;
    opacity: 0;
}

.option-label {
    width: 100%;
    pointer-events: none;
    font-weight: 700;
    font-size: 1rem;
}

.input-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

    .input-group label {
        font-weight: 600;
        margin-bottom: 7px;
        color: #3a0ca3;
        font-size: 1rem;
    }

input[type=text],
input[type=email],
input[type=tel] {
    padding: 12px 16px;
    border-radius: 14px;
    border: 2px solid #d7d7e2;
    font-size: 1rem;
    color: #3a0ca3;
    outline: none;
    background: #faf8fe;
    transition: border 0.3s, box-shadow 0.3s;
    font-family: inherit;
    font-weight: 600;
}

    input[type=text]:focus,
    input[type=email]:focus,
    input[type=tel]:focus {
        border-color: #a780fd;
        background: #fff;
        box-shadow: 0 0 0 3px #e6ddfb;
    }

.nav-btns {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.back-btn,
.next-btn {
    background: linear-gradient(90deg, #a27bfa 0%, #6612c8 100%);
    border: none;
    padding: 13px 38px;
    border-radius: 30px;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(162, 123, 250, 0.2078431373);
    transition: all 0.23s;
}

.back-btn {
    background: #eceafa;
    color: #6612c8;
    border: 2px solid #a27bfa;
    box-shadow: none;
}

    .back-btn:hover {
        background: linear-gradient(90deg, #a27bfa 0%, #6612c8 100%);
        color: #fff;
    }

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.next-btn:hover:not(:disabled) {
    filter: brightness(110%);
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(162, 123, 250, 0.18);
}

.login-wrapper.maltistep {
    grid-template-columns: 1fr;
    padding: 30px;
    min-height: -moz-max-content;
    min-height: max-content;
}

.menu-btns {
    display: flex;
    gap: 20px;
}

.query-button {
    display: flex;
    align-items: center;
    color: #7e30ff;
    background: #fff;
    border-radius: 0.625rem;
    -webkit-text-decoration: none;
    text-decoration: none;
    line-height: 1;
    font-size: 1.25rem;
    transition: 0.2s;
    padding: 1.188rem 3.063rem;
}

/*------*/
/* Responsive Design */
@media screen and (max-width: 1440px) {
    .container {
        width: calc(100% - 80px);
        margin: 0 auto;
    }
}

@media screen and (max-width: 1200px) {
    .story-content,
    .culture-content {
        gap: 60px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .horizontal-main {
        flex-direction: column;
    }

        .horizontal-main .content-right {
            position: relative;
            top: 0;
        }

        .horizontal-main .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    .section-3 .content-right.for-web,
    .section-2 .content-right.for-web {
        grid-template-columns: repeat(1, 1fr);
    }

    .pin-spacer:has(.horizontal-container) {
        height: -moz-max-content !important;
        height: max-content !important;
        z-index: 99 !important;
    }

    .priceing-area {
        height: -moz-max-content !important;
        height: max-content !important;
    }

    .story-section {
        overflow: hidden;
    }

        .story-section .story-content,
        .culture-section .culture-content {
            grid-template-columns: 1fr;
        }

    .team-section .team-grid .team-member {
        min-width: 100%;
    }

    .hover-on .submenu {
        position: relative;
        right: 0;
        top: 0;
    }

    .p-cards-main {
        grid-template-columns: repeat(1, auto);
    }

        .p-cards-main a {
            width: 230px;
            flex-direction: column;
        }

    .nav .nav-container .nav-menu.active {
        justify-content: start;
        padding-top: 8rem;
        align-items: start;
        max-width: 100% 375px;
        background: rgba(182, 167, 213, 0.95);
        height: 100vh;
        overflow: auto;
        padding-bottom: 2rem;
    }

    .priceing-area .container {
        width: calc(100% - 80px);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }

    .nav-menu {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .story-content,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .culture-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: 1;
    }

    .priceing-area .container .priceing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer .footer-container .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

        .nav-menu.active {
            right: 0;
        }

    .close-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

    .nav-menu.active .close-icon {
        display: block;
    }

    .nav .nav-container .logo {
        background: #fff;
        padding: 10px;
        display: flex;
    }

        .nav .nav-container .logo a {
            display: flex;
        }

            .nav .nav-container .logo a:focus-visible {
                outline: none !important;
            }

            .nav .nav-container .logo a img {
                width: 120px;
            }

    .nav .nav-container .nav-menu {
        gap: 0px;
    }

        .nav .nav-container .nav-menu .desktop-btn {
            display: none;
        }

    .nav .nav-container .login-button {
        padding: 1rem 1rem;
        display: flex;
        background: #7e30ff;
        color: #fff;
        border-radius: 0.625rem;
        -webkit-text-decoration: none;
        text-decoration: none;
        line-height: 1;
        font-size: 1.6rem;
        transition: 0.2s;
    }

    .nav .nav-container .menu-main {
        display: flex;
        gap: 30px;
    }

    .nav .nav-container .nav-link {
        color: #fff;
        -webkit-text-decoration: none;
        text-decoration: none;
        font-weight: 400;
        font-size: 24px;
        transition: all 0.3s ease;
        position: relative;
        padding: 10px;
        width: 100%;
        line-height: 2;
    }

    .overview-section {
        overflow: hidden;
    }

        .overview-section .overview-content {
            grid-template-columns: 1fr;
        }

    .team-section {
        overflow: hidden;
    }

    .story-left, .overview-section .overview-content .overview-right {
        position: relative;
        top: 0;
    }

        .story-left .story-image img, .overview-section .overview-content .overview-right .story-image img {
            height: 200px;
        }

    .feature-icon {
        margin: 0 auto;
    }

    .timeline-year {
        margin: 0 auto;
    }

    .login-wrapper {
        grid-template-columns: 1fr !important;
    }
    .nav {
        height: 63px;
    }
    .nav-container {
        height:100%;
    }
    .nav-menu {
        position: absolute !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-timeline {
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .culture-features {
        gap: 20px;
    }

    .culture-feature {
        flex-direction: column;
        text-align: center;
    }

    .priceing-area {
        overflow: hidden;
    }
}

.privacy-content {
    padding: 120px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.section-icon {
    color: #7e30ff;
    margin-bottom: 30px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-section .section-title {
    font-size: 48px;
}

.section-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

    .section-content h4 {
        font-size: 22px;
        font-weight: 600;
        margin: 30px 0 15px 0;
        color: #1a1a1a;
    }

    .section-content p {
        margin-bottom: 20px;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .info-list li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        border-bottom: 1px solid #f0f0f0;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #7e30ff;
            font-weight: bold;
            font-size: 20px;
        }

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .info-card:hover {
        transform: translateY(-5px);
        border-color: #7e30ff;
        box-shadow: 0 10px 25px rgba(126, 48, 255, 0.1);
    }

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.use-cases {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .use-case:hover {
        transform: translateX(10px);
        background: #f0f0f0;
    }

.use-icon {
    font-size: 32px;
    min-width: 50px;
}

.use-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.use-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.sharing-scenarios {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.scenario {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #7e30ff;
}

    .scenario h4 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .scenario p {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .security-item:hover {
        transform: translateY(-5px);
        border-color: #7e30ff;
        box-shadow: 0 10px 25px rgba(126, 48, 255, 0.1);
    }

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.security-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.right-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .right-item:hover {
        transform: translateY(-5px);
        border-color: #7e30ff;
        box-shadow: 0 10px 25px rgba(126, 48, 255, 0.1);
    }

.right-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.right-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.right-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .contact-method:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}
.menu-popup {
    position: absolute;
    bottom: 100%;
    background: #fff;
    padding: 20px 20px 7px;
    width: 270px;
    left: 0;
    display: none;
    border-radius: 10px;
}
.footer-menu-row {
 position: relative;
}
.menu-popup a {
    padding: 11px 4px;
    display: flex;
    text-decoration: none;
    color: #000;
    line-height: 1;
    cursor: pointer;
}
.quick-main:hover .menu-popup {
    display: block;
}
.menu-popup h4 {
    color: #000;
    padding: 10px 0;
}
.menu-popup li {
    border-bottom: 1px solid #8826f6;
}
    .menu-popup li:last-child {
        border: 0;
    }
/* Responsive Design */
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: calc(100% - 80px);
        margin: 0 auto;
    }

    .story-content,
    .culture-content {
        gap: 60px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .horizontal-main {
        flex-direction: column;
    }

        .horizontal-main .content-right {
            position: relative;
            top: 0;
        }

        .horizontal-main .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    .section-3 .content-right.for-web,
    .section-2 .content-right.for-web {
        grid-template-columns: repeat(1, 1fr);
    }

    .pin-spacer:has(.horizontal-container) {
        height: -moz-max-content !important;
        height: max-content !important;
    }

    .priceing-area {
        height: -moz-max-content !important;
        height: max-content !important;
    }

        .priceing-area .container {
            width: calc(100% - 80px);
            margin: 0 auto;
        }

    .horizontal-section {
        padding: 60px;
    }

    .section-content {
        gap: 60px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .horizontal-container .horizontal-wrapper .horizontal-section .section-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .video-section {
        height: 60vh;
    }

    .horizontal-section {
        padding: 40px 20px;
    }

    .section-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .nav-container {
        padding: 20px;
    }

    .nav-menu {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .story-content,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .culture-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: 1;
    }

    .priceing-area .container .priceing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer .footer-container .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

        .nav-menu.active {
            right: 0;
        }

    .close-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

    .nav-menu.active .close-icon {
        display: block;
    }

    .nav .nav-container .nav-menu {
        gap: 0px;
    }

        .nav .nav-container .nav-menu .desktop-btn {
            display: none;
        }

    .nav .nav-container .login-button {
        padding: 1.188rem 3.063rem;
        display: flex;
        background: #7e30ff;
        color: #fff;
        border-radius: 0.625rem;
        -webkit-text-decoration: none;
        text-decoration: none;
        line-height: 1;
        font-size: 1.25rem;
        transition: 0.2s;
    }

    .nav .nav-container .menu-main {
        display: flex;
        gap: 30px;
    }

    .nav .nav-container .nav-link {
        color: #fff;
        -webkit-text-decoration: none;
        text-decoration: none;
        font-weight: 400;
        font-size: 24px;
        transition: all 0.3s ease;
        position: relative;
        padding: 10px;
        width: 100%;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .nav .nav-container {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

        .nav .nav-container .menu-main {
            gap: 15px;
            display: flex;
            align-items: center;
        }

        .nav .nav-container .logo a img {
            width: 80px;
        }

        .nav .nav-container .login-button {
            font-size: 18px;
            padding: 13px 25px;
            height: 50px;
        }

    .video-section {
        height: 80vh;
    }

    .team-member {
        min-width: 100%;
    }

    .section-1 .section-image {
        height: 36vh;
    }

    .horizontal-container .horizontal-wrapper .horizontal-section {
        padding: 20px;
    }

        .horizontal-container .horizontal-wrapper .horizontal-section .section-title {
            font-size: 28px !important;
        }

        .horizontal-container .horizontal-wrapper .horizontal-section .section-text {
            font-size: 14px;
        }

    .footer .footer-container .footer-content .footer-title {
        font-size: 30px;
    }

    .priceing-area {
        padding: 15px 0px;
    }

        .priceing-area .container {
            width: calc(100% - 20px);
        }

    .horizontal-main {
        padding: 40px 20px;
    }

    .footer-menu-row {
        flex-direction: column;
    }

        .footer-menu-row .footer-links {
            gap: 20px;
            margin-bottom: 15px;
        }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-timeline {
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .culture-features {
        gap: 20px;
    }

    .culture-feature {
        flex-direction: column;
        text-align: center;
    }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b5b0b0;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #b5b0b0;
    }
/*# sourceMappingURL=style.css.map */
