/* /Layout/ChatWidget.razor.rz.scp.css */
.dcs-chat-widget[b-svgdgejsgh] {
    position: fixed;
    bottom: 30px;
    right: 110px;
    z-index: 9999;
    font-family: 'Oxanium', sans-serif;
}

.chat-bubble[b-svgdgejsgh] {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .chat-bubble:hover[b-svgdgejsgh] {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(255, 68, 68, 0.6);
    }

    .chat-bubble svg[b-svgdgejsgh] {
        width: 32px;
        height: 32px;
        color: white;
    }

    .chat-bubble.active[b-svgdgejsgh] {
        background: #16213e;
        border: 2px solid #ff4444;
    }

        .chat-bubble.active[b-svgdgejsgh]::before,
        .chat-bubble.active[b-svgdgejsgh]::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2.5px;
            background: #ff4444;
            border-radius: 2px;
        }

        .chat-bubble.active[b-svgdgejsgh]::before {
            transform: rotate(45deg);
        }

        .chat-bubble.active[b-svgdgejsgh]::after {
            transform: rotate(-45deg);
        }

.notification-badge[b-svgdgejsgh] {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #0f0f23;
    border: 3px solid #1a1a2e;
    animation: pulse-b-svgdgejsgh 2s infinite;
}

@keyframes pulse-b-svgdgejsgh {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
}

.chat-window[b-svgdgejsgh] {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 420px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 68, 68, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .chat-window.show[b-svgdgejsgh] {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

.chat-header[b-svgdgejsgh] {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content[b-svgdgejsgh] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar[b-svgdgejsgh] {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    overflow: hidden;
}

    .bot-avatar img[b-svgdgejsgh] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.chat-header-info h3[b-svgdgejsgh] {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator[b-svgdgejsgh] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.status-dot[b-svgdgejsgh] {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-b-svgdgejsgh 2s infinite;
}

.close-btn[b-svgdgejsgh] {
    width: 36px;
    height: 36px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn:hover[b-svgdgejsgh] {
        background: #ff4444;
        border-color: #ff4444;
    }

    .close-btn svg[b-svgdgejsgh] {
        width: 20px;
        height: 20px;
        color: #ff4444;
    }

    .close-btn:hover svg[b-svgdgejsgh] {
        color: white;
    }

.chat-messages[b-svgdgejsgh] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

    .chat-messages[b-svgdgejsgh]::-webkit-scrollbar {
        width: 6px;
    }

    .chat-messages[b-svgdgejsgh]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .chat-messages[b-svgdgejsgh]::-webkit-scrollbar-thumb {
        background: #ff4444;
        border-radius: 10px;
    }

.message[b-svgdgejsgh] {
    display: flex;
    gap: 10px;
    animation: messageSlide-b-svgdgejsgh 0.3s ease;
}

@keyframes messageSlide-b-svgdgejsgh {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message[b-svgdgejsgh] {
    align-items: flex-start;
}

.user-message[b-svgdgejsgh] {
    justify-content: flex-end;
}

.message-avatar[b-svgdgejsgh] {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

    .message-avatar img[b-svgdgejsgh] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.message-content[b-svgdgejsgh] {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 75%;
}

.user-message .message-content[b-svgdgejsgh] {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.message-content p[b-svgdgejsgh] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.typing-indicator[b-svgdgejsgh] {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

    .typing-indicator span[b-svgdgejsgh] {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: typing-b-svgdgejsgh 1.4s infinite;
    }

        .typing-indicator span:nth-child(2)[b-svgdgejsgh] {
            animation-delay: 0.2s;
        }

        .typing-indicator span:nth-child(3)[b-svgdgejsgh] {
            animation-delay: 0.4s;
        }

@keyframes typing-b-svgdgejsgh {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.quick-actions[b-svgdgejsgh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.action-btn[b-svgdgejsgh] {
    padding: 12px 16px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

    .action-btn svg[b-svgdgejsgh] {
        width: 24px;
        height: 24px;
        color: #ff4444;
    }

    .action-btn:hover[b-svgdgejsgh] {
        background: rgba(255, 68, 68, 0.2);
        border-color: #ff4444;
        transform: translateY(-2px);
    }

.chat-input[b-svgdgejsgh] {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 10px;
}

    .chat-input input[b-svgdgejsgh] {
        flex: 1;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: white;
        font-size: 14px;
        font-family: 'Oxanium', sans-serif;
        transition: all 0.3s ease;
    }

        .chat-input input[b-svgdgejsgh]::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .chat-input input:focus[b-svgdgejsgh] {
            outline: none;
            border-color: #ff4444;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
        }

.send-btn[b-svgdgejsgh] {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .send-btn:disabled[b-svgdgejsgh] {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .send-btn:not(:disabled):hover[b-svgdgejsgh] {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    }

    .send-btn svg[b-svgdgejsgh] {
        width: 22px;
        height: 22px;
        color: white;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .dcs-chat-widget[b-svgdgejsgh] {
        bottom: 100px;
        right: 20px;
    }

    .chat-window[b-svgdgejsgh] {
        width: calc(100vw - 40px);
        height: calc(100vh - 200px);
        bottom: 75px;
        right: 0;
    }

    .quick-actions[b-svgdgejsgh] {
        grid-template-columns: 1fr;
    }

    .chat-bubble[b-svgdgejsgh] {
        width: 60px;
        height: 60px;
    }

        .chat-bubble svg[b-svgdgejsgh] {
            width: 28px;
            height: 28px;
        }

    .notification-badge[b-svgdgejsgh] {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .dcs-chat-widget[b-svgdgejsgh] {
        bottom: 90px;
        right: 15px;
    }

    .chat-bubble[b-svgdgejsgh] {
        width: 55px;
        height: 55px;
    }

    .chat-window[b-svgdgejsgh] {
        width: calc(100vw - 30px);
        right: -5px;
    }
}
/* /Layout/Footer.razor.rz.scp.css */
/* Footer Loading Skeleton Styles */
.skeleton[b-msrl14hfb0] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-msrl14hfb0 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-msrl14hfb0 {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Newsletter Skeleton */
.skeleton-newsletter[b-msrl14hfb0] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.skeleton-newsletter-title[b-msrl14hfb0] {
    height: 32px;
    width: 80%;
    margin: 0 auto 30px;
}

.skeleton-newsletter-input[b-msrl14hfb0] {
    height: 50px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 25px;
}

/* Footer Logo Skeleton */
.skeleton-footer-logo[b-msrl14hfb0] {
    width: 180px;
    height: 50px;
    margin: 0 auto;
}

/* Footer Content Skeleton */
.footer-info-skeleton[b-msrl14hfb0],
.footer-menu-skeleton[b-msrl14hfb0],
.footer-address-skeleton[b-msrl14hfb0] {
    opacity: 0.8;
}

.skeleton-text-line[b-msrl14hfb0] {
    height: 16px;
    width: 100%;
    margin-bottom: 12px;
}

.skeleton-phone[b-msrl14hfb0] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.skeleton-phone-icon[b-msrl14hfb0] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-phone-text[b-msrl14hfb0] {
    width: 150px;
    height: 20px;
}

/* Menu Skeleton */
.skeleton-menu-title[b-msrl14hfb0] {
    height: 20px;
    width: 120px;
    margin-bottom: 20px;
}

.skeleton-menu-item[b-msrl14hfb0] {
    height: 16px;
    width: 100px;
    margin-bottom: 12px;
}

    .skeleton-menu-item:nth-child(2)[b-msrl14hfb0] {
        width: 80px;
    }

    .skeleton-menu-item:nth-child(3)[b-msrl14hfb0] {
        width: 110px;
    }

    .skeleton-menu-item:nth-child(4)[b-msrl14hfb0] {
        width: 70px;
    }

/* Address Skeleton */
.skeleton-address-line[b-msrl14hfb0] {
    height: 16px;
    width: 100%;
    margin-bottom: 15px;
}

    .skeleton-address-line:nth-child(2)[b-msrl14hfb0] {
        width: 90%;
    }

    .skeleton-address-line:nth-child(3)[b-msrl14hfb0] {
        width: 85%;
    }

    .skeleton-address-line:nth-child(4)[b-msrl14hfb0] {
        width: 75%;
    }

/* Copyright Skeleton */
.skeleton-copyright[b-msrl14hfb0] {
    height: 18px;
    width: 280px;
}

.skeleton-social[b-msrl14hfb0] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.skeleton-social-icon[b-msrl14hfb0] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .footer-content[b-msrl14hfb0] {
        flex-direction: column;
        gap: 40px;
    }

    .skeleton-newsletter-title[b-msrl14hfb0] {
        width: 100%;
    }

    .copy-right[b-msrl14hfb0] {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .skeleton-copyright[b-msrl14hfb0] {
        margin: 0 auto;
    }

    .skeleton-social[b-msrl14hfb0] {
        justify-content: center;
    }
}

.footer.style-1 .footer-content .footer-address[b-msrl14hfb0] {
    max-width: 260px !important;
}
/* /Layout/HeaderMenu.razor.rz.scp.css */
.ak-sticky_header[b-a0advb28pc] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

    .ak-sticky_header.header-hidden[b-a0advb28pc] {
        transform: translateY(-100%);
    }

.text-hover-animaiton[b-a0advb28pc] {
    position: relative;
    display: inline-block;
}

    .text-hover-animaiton .menu-text[b-a0advb28pc] {
        position: relative;
        display: inline-block;
        text-shadow: none
    }

        .text-hover-animaiton .menu-text[b-a0advb28pc]::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #ff4444;
            transition: width 0.3s ease-out;
        }

    .text-hover-animaiton:hover .menu-text[b-a0advb28pc]::after {
        width: 100%;
    }

    .text-hover-animaiton.active .menu-text[b-a0advb28pc]::after {
        width: 100%;
    }

    .text-hover-animaiton .menu-text[b-a0advb28pc] {
        overflow: hidden;
    }

        .text-hover-animaiton .menu-text span[b-a0advb28pc] {
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
        }

    .text-hover-animaiton:hover .menu-text span[b-a0advb28pc] {
        transform: translateY(-100%);
    }

    .text-hover-animaiton .menu-text[b-a0advb28pc]::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 100%;
        transform: translateY(0);
        transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
        color: #ff4444;
    }

    .text-hover-animaiton:hover .menu-text[b-a0advb28pc]::before {
        transform: translateY(-100%);
    }

.header-loading[b-a0advb28pc] {
    background: #1a1a1a;
    min-height: 90px
}

    .header-loading .ak-main_header[b-a0advb28pc] {
        min-height: 90px;
        display: flex;
        align-items: center;
    }

.skeleton[b-a0advb28pc] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-a0advb28pc 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-a0advb28pc {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-logo[b-a0advb28pc] {
    width: 150px;
    height: 45px;
    border-radius: 8px;
}

.skeleton-nav[b-a0advb28pc] {
    display: flex;
    gap: 30px;
    align-items: center;
}

.skeleton-nav-item[b-a0advb28pc] {
    width: 80px;
    height: 25px;
}

    .skeleton-nav-item:nth-child(1)[b-a0advb28pc] {
        width: 60px;
    }

    .skeleton-nav-item:nth-child(3)[b-a0advb28pc] {
        width: 90px;
    }

    .skeleton-nav-item:nth-child(5)[b-a0advb28pc] {
        width: 70px;
    }

.skeleton-phone[b-a0advb28pc] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.skeleton-phone-icon[b-a0advb28pc] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-phone-text[b-a0advb28pc] {
    width: 130px;
    height: 20px;
}

@media (max-width: 991px) {
    .skeleton-nav[b-a0advb28pc] {
        display: none;
    }

    .skeleton-phone-text[b-a0advb28pc] {
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .ak-nav .ak-nav_list[b-a0advb28pc] {
        border-bottom: none;
        padding: 70px 0 10px;
    }

    .ak-munu_dropdown_toggle[b-a0advb28pc]:before, .ak-munu_dropdown_toggle[b-a0advb28pc]:after {
        height: 3px;
        width: 20px;
    }
}
/* /Layout/HeaderNavigation.razor.rz.scp.css */
.ak-sticky_header[b-fra8m1pdhd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

    .ak-sticky_header.header-hidden[b-fra8m1pdhd] {
        transform: translateY(-100%);
    }

.text-hover-animaiton[b-fra8m1pdhd] {
    position: relative;
    display: inline-block;
}

    .text-hover-animaiton .menu-text[b-fra8m1pdhd] {
        position: relative;
        display: inline-block;
        text-shadow: none
    }

        .text-hover-animaiton .menu-text[b-fra8m1pdhd]::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #ff4444;
            transition: width 0.3s ease-out;
        }

    .text-hover-animaiton:hover .menu-text[b-fra8m1pdhd]::after {
        width: 100%;
    }

    .text-hover-animaiton.active .menu-text[b-fra8m1pdhd]::after {
        width: 100%;
    }

    .text-hover-animaiton .menu-text[b-fra8m1pdhd] {
        overflow: hidden;
    }

        .text-hover-animaiton .menu-text span[b-fra8m1pdhd] {
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
        }

    .text-hover-animaiton:hover .menu-text span[b-fra8m1pdhd] {
        transform: translateY(-100%);
    }

    .text-hover-animaiton .menu-text[b-fra8m1pdhd]::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 100%;
        transform: translateY(0);
        transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
        color: #ff4444;
    }

    .text-hover-animaiton:hover .menu-text[b-fra8m1pdhd]::before {
        transform: translateY(-100%);
    }

.header-loading[b-fra8m1pdhd] {
    background: #1a1a1a;
    min-height: 90px
}

    .header-loading .ak-main_header[b-fra8m1pdhd] {
        min-height: 90px;
        display: flex;
        align-items: center;
    }

.skeleton[b-fra8m1pdhd] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-fra8m1pdhd 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-fra8m1pdhd {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-logo[b-fra8m1pdhd] {
    width: 150px;
    height: 45px;
    border-radius: 8px;
}

.skeleton-nav[b-fra8m1pdhd] {
    display: flex;
    gap: 30px;
    align-items: center;
}

.skeleton-nav-item[b-fra8m1pdhd] {
    width: 80px;
    height: 25px;
}

    .skeleton-nav-item:nth-child(1)[b-fra8m1pdhd] {
        width: 60px;
    }

    .skeleton-nav-item:nth-child(3)[b-fra8m1pdhd] {
        width: 90px;
    }

    .skeleton-nav-item:nth-child(5)[b-fra8m1pdhd] {
        width: 70px;
    }

.skeleton-phone[b-fra8m1pdhd] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.skeleton-phone-icon[b-fra8m1pdhd] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-phone-text[b-fra8m1pdhd] {
    width: 130px;
    height: 20px;
}

@media (max-width: 991px) {
    .skeleton-nav[b-fra8m1pdhd] {
        display: none;
    }

    .skeleton-phone-text[b-fra8m1pdhd] {
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .ak-nav .ak-nav_list[b-fra8m1pdhd] {
        border-bottom: none;
        padding: 70px 0 10px;
    }

    .ak-munu_dropdown_toggle[b-fra8m1pdhd]:before, .ak-munu_dropdown_toggle[b-fra8m1pdhd]:after {
        height: 3px;
        width: 20px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-hpx0wf3c0m] {
    background: #000;
    min-height: 100vh;
    color: #fff;
}

main[b-hpx0wf3c0m] {
    padding: 0;
}

/* Sticky header */
.ak-sticky_header[b-hpx0wf3c0m] {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    transition: all 0.3s;
}

    .ak-sticky_header.scrolled[b-hpx0wf3c0m] {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

/* Mobile menu */
@media (max-width: 991px) {
    .ak-nav_list[b-hpx0wf3c0m] {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: white;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

        .ak-nav_list.active[b-hpx0wf3c0m] {
            left: 0;
        }

    .ak-munu_toggle[b-hpx0wf3c0m] {
        display: block;
    }
}
/* /Layout/PageNotFound.razor.rz.scp.css */
/* 404 Error Page Styles */
.error-page[b-cgqw9sb8ee] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Background */
.error-background[b-cgqw9sb8ee] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.error-shapes[b-cgqw9sb8ee] {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape[b-cgqw9sb8ee] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-b-cgqw9sb8ee 20s ease-in-out infinite;
}

.shape-1[b-cgqw9sb8ee] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2[b-cgqw9sb8ee] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3[b-cgqw9sb8ee] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-b-cgqw9sb8ee {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Error Content */
.error-content[b-cgqw9sb8ee] {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Icon Wrapper */
.error-icon-wrapper[b-cgqw9sb8ee] {
    margin-bottom: 30px;
    animation: fadeInDown-b-cgqw9sb8ee 0.6s ease-out;
}

.error-icon-circle[b-cgqw9sb8ee] {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(78, 205, 196, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-b-cgqw9sb8ee 2s ease-in-out infinite;
}

    .error-icon-circle[b-cgqw9sb8ee]::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid #ff6b35;
        border-radius: 50%;
        animation: ripple-b-cgqw9sb8ee 2s ease-out infinite;
    }

    .error-icon-circle i[b-cgqw9sb8ee] {
        font-size: 50px;
        color: #ff6b35;
        filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
    }

@keyframes pulse-b-cgqw9sb8ee {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple-b-cgqw9sb8ee {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeInDown-b-cgqw9sb8ee {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Text */
.error-title[b-cgqw9sb8ee] {
    font-size: 140px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: none;
    animation: fadeInUp-b-cgqw9sb8ee 0.6s ease-out 0.2s both;
}

.error-subtitle[b-cgqw9sb8ee] {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp-b-cgqw9sb8ee 0.6s ease-out 0.3s both;
}

.error-message[b-cgqw9sb8ee] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp-b-cgqw9sb8ee 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp-b-cgqw9sb8ee {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Action Buttons */
.error-actions[b-cgqw9sb8ee] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp-b-cgqw9sb8ee 0.6s ease-out 0.5s both;
}

.error-btn[b-cgqw9sb8ee] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .error-btn[b-cgqw9sb8ee]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        z-index: -1;
    }

    .error-btn:hover[b-cgqw9sb8ee]::before {
        width: 300px;
        height: 300px;
    }

    .error-btn.primary[b-cgqw9sb8ee] {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: #fff;
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    }

        .error-btn.primary:hover[b-cgqw9sb8ee] {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.6);
        }

    .error-btn.secondary[b-cgqw9sb8ee] {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(78, 205, 196, 0.5);
        color: #4ecdc4;
        backdrop-filter: blur(10px);
    }

        .error-btn.secondary:hover[b-cgqw9sb8ee] {
            background: rgba(78, 205, 196, 0.1);
            border-color: #4ecdc4;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
        }

    .error-btn i[b-cgqw9sb8ee] {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .error-btn:hover i[b-cgqw9sb8ee] {
        transform: scale(1.2);
    }

/* Suggestions */
.error-suggestions[b-cgqw9sb8ee] {
    animation: fadeInUp-b-cgqw9sb8ee 0.6s ease-out 0.6s both;
}

.suggestions-title[b-cgqw9sb8ee] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.suggestions-links[b-cgqw9sb8ee] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

    .suggestions-links a[b-cgqw9sb8ee] {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        padding: 8px 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

        .suggestions-links a:hover[b-cgqw9sb8ee] {
            color: #4ecdc4;
            background: rgba(78, 205, 196, 0.1);
            transform: translateY(-2px);
        }

/* Responsive */
@media (max-width: 768px) {
    .error-icon-circle[b-cgqw9sb8ee] {
        width: 100px;
        height: 100px;
    }

        .error-icon-circle i[b-cgqw9sb8ee] {
            font-size: 40px;
        }

    .error-title[b-cgqw9sb8ee] {
        font-size: 100px;
    }

    .error-subtitle[b-cgqw9sb8ee] {
        font-size: 26px;
    }

    .error-message[b-cgqw9sb8ee] {
        font-size: 16px;
    }

    .error-actions[b-cgqw9sb8ee] {
        flex-direction: column;
        align-items: stretch;
    }

    .error-btn[b-cgqw9sb8ee] {
        width: 100%;
        justify-content: center;
    }

    .suggestions-links[b-cgqw9sb8ee] {
        flex-direction: column;
        align-items: center;
    }

    .shape[b-cgqw9sb8ee] {
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .error-title[b-cgqw9sb8ee] {
        font-size: 80px;
    }

    .error-subtitle[b-cgqw9sb8ee] {
        font-size: 22px;
    }
}
/* /Layout/ScrollToTop.razor.rz.scp.css */
.ak-scrollup[b-gsr2u5bgpa] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
}

    .ak-scrollup.show[b-gsr2u5bgpa] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .ak-scrollup:hover[b-gsr2u5bgpa] {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 12px 40px rgba(255, 68, 68, 0.6);
    }

    .ak-scrollup:active[b-gsr2u5bgpa] {
        transform: translateY(-3px) scale(1.05);
    }

    .ak-scrollup svg[b-gsr2u5bgpa] {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .ak-scrollup[b-gsr2u5bgpa] {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

        .ak-scrollup svg[b-gsr2u5bgpa] {
            width: 22px;
            height: 22px;
        }
}

@media (max-width: 480px) {
    .ak-scrollup[b-gsr2u5bgpa] {
        bottom: 20px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

        .ak-scrollup svg[b-gsr2u5bgpa] {
            width: 20px;
            height: 20px;
        }
}
/* /Pages/BlogTemplate/BlogSection.razor.rz.scp.css */
/* Blog News Skeleton Styles */
.skeleton[b-lawhyhcgsi] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-lawhyhcgsi 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-lawhyhcgsi {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.blog-skeleton-card[b-lawhyhcgsi] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skeleton-blog-image[b-lawhyhcgsi] {
    width: 100%;
    height: 250px;
    border-radius: 0;
}

.blog-skeleton-body[b-lawhyhcgsi] {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-blog-date[b-lawhyhcgsi] {
    width: 30%;
    height: 16px;
}

.skeleton-blog-title[b-lawhyhcgsi] {
    width: 100%;
    height: 22px;
}

.skeleton-blog-button[b-lawhyhcgsi] {
    width: 140px;
    height: 45px;
    border-radius: 25px;
    margin: 20px 25px 25px;
}

@media (max-width: 991px) {
    .skeleton-blog-image[b-lawhyhcgsi] {
        height: 220px;
    }

    .blog-skeleton-body[b-lawhyhcgsi] {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .skeleton-blog-image[b-lawhyhcgsi] {
        height: 200px;
    }

    .blog-skeleton-body[b-lawhyhcgsi] {
        padding: 18px;
    }

    .skeleton-blog-button[b-lawhyhcgsi] {
        width: 120px;
        height: 42px;
        margin: 15px 18px 20px;
    }
}
/* /Pages/Components/ComingSoonSection.razor.rz.scp.css */
.comming-section[b-oujn8ckhlg] {
    position: relative;
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, hsl(7deg 100% 57% / 20%) 0%, #2d2d2d 100%);
    padding: 80px 20px;
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
}

.comming-content[b-oujn8ckhlg] {
    text-align: center;
    max-width: 1200px;
    /* width: 100%; */
}

.comming-title[b-oujn8ckhlg] {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.time-info[b-oujn8ckhlg] {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-card[b-oujn8ckhlg] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 25px;
    min-width: 150px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

    .time-card:hover[b-oujn8ckhlg] {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

.time-text[b-oujn8ckhlg] {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.ak-stroke-number[b-oujn8ckhlg] {
    -webkit-text-stroke: 2px #ff4444;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.color-white[b-oujn8ckhlg] {
    color: white;
}

.time-card p[b-oujn8ckhlg] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .comming-title[b-oujn8ckhlg] {
        font-size: 2.5rem;
    }

    .time-card[b-oujn8ckhlg] {
        min-width: 120px;
        padding: 20px 15px;
    }

    .time-text[b-oujn8ckhlg] {
        font-size: 3rem;
    }

    .time-card p[b-oujn8ckhlg] {
        font-size: 1rem;
    }
}
/* /Pages/DynamicPageContent.razor.rz.scp.css */
/* Page Hero */
.page-hero[b-qwzvd5oseq] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay[b-qwzvd5oseq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 20, 25, 0.85));*/
}

.page-title[b-qwzvd5oseq] {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle[b-qwzvd5oseq] {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Page Sections */
.page-section[b-qwzvd5oseq] {
    margin-bottom: 60px;
}

.section-title[b-qwzvd5oseq] {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.text-section .section-content[b-qwzvd5oseq] {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Image Section */
.image-section[b-qwzvd5oseq] {
    text-align: center;
}

.section-image[b-qwzvd5oseq] {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.image-caption[b-qwzvd5oseq] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Features Section */
.features-grid[b-qwzvd5oseq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item[b-qwzvd5oseq] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
}

    .feature-item i[b-qwzvd5oseq] {
        color: #4ecdc4;
        font-size: 24px;
    }

    .feature-item span[b-qwzvd5oseq] {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }

/* Stats Section */
.stats-grid[b-qwzvd5oseq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.stat-item[b-qwzvd5oseq] {
    text-align: center;
}

.stat-value[b-qwzvd5oseq] {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label[b-qwzvd5oseq] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section[b-qwzvd5oseq] {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.cta-title[b-qwzvd5oseq] {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content[b-qwzvd5oseq] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Skeleton Styles */
.skeleton-hero[b-qwzvd5oseq] {
    text-align: center;
    padding: 60px 20px;
}

.skeleton-hero-title[b-qwzvd5oseq] {
    width: 400px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 6px;
}

.skeleton-hero-subtitle[b-qwzvd5oseq] {
    width: 600px;
    max-width: 90%;
    height: 24px;
    margin: 0 auto;
    border-radius: 4px;
}

.content-skeleton[b-qwzvd5oseq] {
    max-width: 800px;
}

.skeleton-section-title[b-qwzvd5oseq] {
    width: 300px;
    height: 36px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.skeleton-text-line[b-qwzvd5oseq] {
    width: 100%;
    height: 18px;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title[b-qwzvd5oseq] {
        font-size: 36px;
    }

    .page-subtitle[b-qwzvd5oseq] {
        font-size: 18px;
    }

    .section-title[b-qwzvd5oseq] {
        font-size: 28px;
    }

    .stat-value[b-qwzvd5oseq] {
        font-size: 36px;
    }

    .features-grid[b-qwzvd5oseq] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Faq.razor.rz.scp.css */
/* FAQ Header */
.faq-header[b-zludqt5xwa] {
    text-align: center;
    margin-bottom: 60px;
}

.faq-main-title[b-zludqt5xwa] {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle[b-zludqt5xwa] {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Layout */
.faq-content-wrapper[b-zludqt5xwa] {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

/* Elegant Accordion */
.elegant-accordion[b-zludqt5xwa] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item[b-zludqt5xwa] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-item:hover[b-zludqt5xwa] {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 68, 68, 0.3);
        transform: translateX(5px);
    }

    .accordion-item.active[b-zludqt5xwa] {
        background: rgba(255, 68, 68, 0.05);
        border-color: #ff4444;
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.2);
    }

.accordion-header[b-zludqt5xwa] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-icon-number[b-zludqt5xwa] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .accordion-icon-number .number[b-zludqt5xwa] {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ff4444;
        font-family: 'Oxanium', sans-serif;
    }

.accordion-item.active .accordion-icon-number[b-zludqt5xwa] {
    background: #ff4444;
    border-color: #ff4444;
    transform: scale(1.1);
}

    .accordion-item.active .accordion-icon-number .number[b-zludqt5xwa] {
        color: #fff;
    }

.accordion-question[b-zludqt5xwa] {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: 'Oxanium', sans-serif;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-question[b-zludqt5xwa] {
    color: #ff4444;
}

.accordion-toggle-icon[b-zludqt5xwa] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.icon-plus[b-zludqt5xwa],
.icon-minus[b-zludqt5xwa] {
    position: absolute;
    transition: all 0.3s ease;
}

.icon-plus[b-zludqt5xwa] {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus[b-zludqt5xwa] {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .icon-plus[b-zludqt5xwa] {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .icon-minus[b-zludqt5xwa] {
    opacity: 1;
    transform: rotate(0deg);
}

.accordion-item.active .accordion-toggle-icon[b-zludqt5xwa] {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.accordion-content[b-zludqt5xwa] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

    .accordion-content.show[b-zludqt5xwa] {
        max-height: 500px;
    }

.accordion-answer[b-zludqt5xwa] {
    padding: 0 30px 30px 95px;
}

    .accordion-answer p[b-zludqt5xwa] {
        color: #ccc;
        line-height: 1.8;
        margin: 0;
        font-size: 1rem;
    }

/* FAQ CTA */
.faq-cta[b-zludqt5xwa] {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.faq-cta-content h3[b-zludqt5xwa] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Oxanium', sans-serif;
}

.faq-cta-content p[b-zludqt5xwa] {
    color: #999;
    margin-bottom: 25px;
}

.btn-contact[b-zludqt5xwa] {
    display: inline-block;
    padding: 15px 40px;
    background: #ff4444;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

    .btn-contact:hover[b-zludqt5xwa] {
        background: #ff6b6b;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5);
    }

/* Contact Card */
.faq-contact-card[b-zludqt5xwa] {
    position: sticky;
    top: 100px;
}

.contact-card-inner[b-zludqt5xwa] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-card-bg[b-zludqt5xwa] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .contact-card-bg img[b-zludqt5xwa] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contact-card-overlay[b-zludqt5xwa] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.98) 50%, rgba(26, 26, 46, 0.95) 100%);
}

.contact-card-content[b-zludqt5xwa] {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.contact-card-header[b-zludqt5xwa] {
    text-align: center;
    margin-bottom: 30px;
}

.header-icon[b-zludqt5xwa] {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.contact-card-header h3[b-zludqt5xwa] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Oxanium', sans-serif;
}

.contact-card-header p[b-zludqt5xwa] {
    color: #999;
    font-size: 0.95rem;
}

.contact-card-items[b-zludqt5xwa] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item[b-zludqt5xwa] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact-item:hover[b-zludqt5xwa] {
        background: rgba(255, 68, 68, 0.1);
        border-color: rgba(255, 68, 68, 0.3);
        transform: translateX(5px);
    }

.contact-item-icon[b-zludqt5xwa] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff4444;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon[b-zludqt5xwa] {
    background: #ff4444;
    color: #fff;
    transform: scale(1.1);
}

.contact-item-text[b-zludqt5xwa] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label[b-zludqt5xwa] {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value[b-zludqt5xwa] {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

/* Social */
.contact-social[b-zludqt5xwa] {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .contact-social p[b-zludqt5xwa] {
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

.social-icons[b-zludqt5xwa] {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon[b-zludqt5xwa] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover[b-zludqt5xwa] {
        background: #ff4444;
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .faq-content-wrapper[b-zludqt5xwa] {
        grid-template-columns: 1fr;
    }

    .faq-contact-card[b-zludqt5xwa] {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq-main-title[b-zludqt5xwa] {
        font-size: 2rem;
    }

    .accordion-header[b-zludqt5xwa] {
        padding: 20px;
        gap: 15px;
    }

    .accordion-icon-number[b-zludqt5xwa] {
        width: 40px;
        height: 40px;
    }

    .accordion-question[b-zludqt5xwa] {
        font-size: 1rem;
    }

    .accordion-answer[b-zludqt5xwa] {
        padding: 0 20px 20px 75px;
    }

    .contact-card-content[b-zludqt5xwa] {
        padding: 30px 20px;
    }

    .faq-cta[b-zludqt5xwa] {
        padding: 30px 20px;
    }
}
/* /Pages/Gallery.razor.rz.scp.css */
/* Gallery Header */
.gallery-header[b-zgoxnbn3ap] {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title[b-zgoxnbn3ap] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-subtitle[b-zgoxnbn3ap] {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filters */
.gallery-filters[b-zgoxnbn3ap] {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn[b-zgoxnbn3ap] {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 68, 68, 0.3);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .filter-btn:hover[b-zgoxnbn3ap] {
        background: rgba(255, 68, 68, 0.1);
        border-color: #ff4444;
        transform: translateY(-2px);
    }

    .filter-btn.active[b-zgoxnbn3ap] {
        background: #ff4444;
        border-color: #ff4444;
        box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
    }

/* Modern Gallery Grid */
.modern-gallery[b-zgoxnbn3ap] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.gallery-card[b-zgoxnbn3ap] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 300px;
}

    .gallery-card.vertical[b-zgoxnbn3ap] {
        grid-row: span 2;
        height: 625px;
    }

    .gallery-card.horizontal[b-zgoxnbn3ap] {
        grid-column: span 2;
    }

    .gallery-card:hover[b-zgoxnbn3ap] {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
    }

.gallery-card-inner[b-zgoxnbn3ap] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .gallery-card-inner img[b-zgoxnbn3ap] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-card:hover .gallery-card-inner img[b-zgoxnbn3ap] {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay[b-zgoxnbn3ap] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(255, 68, 68, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
}

.gallery-card:hover .gallery-overlay[b-zgoxnbn3ap] {
    opacity: 1;
}

.gallery-content[b-zgoxnbn3ap] {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content[b-zgoxnbn3ap] {
    transform: translateY(0);
}

.gallery-icon[b-zgoxnbn3ap] {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse-b-zgoxnbn3ap 2s infinite;
}

@keyframes pulse-b-zgoxnbn3ap {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.gallery-title-overlay[b-zgoxnbn3ap] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Oxanium', sans-serif;
}

.gallery-description[b-zgoxnbn3ap] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.gallery-tags[b-zgoxnbn3ap] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag[b-zgoxnbn3ap] {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* No Results */
.no-results[b-zgoxnbn3ap] {
    text-align: center;
    padding: 80px 20px;
}

    .no-results svg[b-zgoxnbn3ap] {
        margin-bottom: 20px;
    }

    .no-results h3[b-zgoxnbn3ap] {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 10px;
    }

    .no-results p[b-zgoxnbn3ap] {
        color: #999;
    }

/* Enhanced Lightbox */
.lightbox-overlay[b-zgoxnbn3ap] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-zgoxnbn3ap 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-container[b-zgoxnbn3ap] {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 95vh;
    display: flex;
    flex-direction: column;
}

.lightbox-content[b-zgoxnbn3ap] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.lightbox-image-wrapper[b-zgoxnbn3ap] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
}

.lightbox-image[b-zgoxnbn3ap] {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn-b-zgoxnbn3ap 0.3s ease;
}

@keyframes zoomIn-b-zgoxnbn3ap {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox Info */
.lightbox-info[b-zgoxnbn3ap] {
    text-align: center;
    max-width: 600px;
}

.lightbox-title[b-zgoxnbn3ap] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Oxanium', sans-serif;
}

.lightbox-description[b-zgoxnbn3ap] {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.lightbox-tags[b-zgoxnbn3ap] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox Controls */
.lightbox-close[b-zgoxnbn3ap] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

    .lightbox-close:hover[b-zgoxnbn3ap] {
        background: #ff4444;
        border-color: #ff4444;
        transform: rotate(90deg);
    }

.lightbox-nav[b-zgoxnbn3ap] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

    .lightbox-nav:hover:not(:disabled)[b-zgoxnbn3ap] {
        background: #ff4444;
        border-color: #ff4444;
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav:disabled[b-zgoxnbn3ap] {
        opacity: 0.3;
        cursor: not-allowed;
    }

.lightbox-prev[b-zgoxnbn3ap] {
    left: 20px;
}

.lightbox-next[b-zgoxnbn3ap] {
    right: 20px;
}

/* Lightbox Footer */
.lightbox-footer[b-zgoxnbn3ap] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.lightbox-counter[b-zgoxnbn3ap] {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
}

    .lightbox-counter .current[b-zgoxnbn3ap] {
        color: #ff4444;
        font-size: 1.5rem;
    }

    .lightbox-counter .separator[b-zgoxnbn3ap] {
        margin: 0 10px;
        opacity: 0.5;
    }

.lightbox-dots[b-zgoxnbn3ap] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot[b-zgoxnbn3ap] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

    .dot:hover[b-zgoxnbn3ap] {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.3);
    }

    .dot.active[b-zgoxnbn3ap] {
        background: #ff4444;
        width: 30px;
        border-radius: 5px;
    }

.dot-more[b-zgoxnbn3ap] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

@keyframes fadeIn-b-zgoxnbn3ap {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-gallery[b-zgoxnbn3ap] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-card.horizontal[b-zgoxnbn3ap] {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-title[b-zgoxnbn3ap] {
        font-size: 2rem;
    }

    .gallery-filters[b-zgoxnbn3ap] {
        gap: 10px;
    }

    .filter-btn[b-zgoxnbn3ap] {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .modern-gallery[b-zgoxnbn3ap] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-card[b-zgoxnbn3ap],
    .gallery-card.vertical[b-zgoxnbn3ap],
    .gallery-card.horizontal[b-zgoxnbn3ap] {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }

    .lightbox-nav[b-zgoxnbn3ap] {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev[b-zgoxnbn3ap] {
        left: 10px;
    }

    .lightbox-next[b-zgoxnbn3ap] {
        right: 10px;
    }

    .lightbox-close[b-zgoxnbn3ap] {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .lightbox-footer[b-zgoxnbn3ap] {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .lightbox-info[b-zgoxnbn3ap] {
        padding: 0 20px;
    }

    .lightbox-title[b-zgoxnbn3ap] {
        font-size: 1.3rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* /Pages/PageTemplate/CEOProfile.razor.rz.scp.css */
/* CEO Section Styles */
.elegant-ceo-section[b-0c4r29hbpt] {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

    .elegant-ceo-section[b-0c4r29hbpt]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.08) 0%, transparent 60%);
        pointer-events: none;
    }

.container[b-0c4r29hbpt] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.ceo-wrapper[b-0c4r29hbpt] {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Image Container */
.ceo-image-container[b-0c4r29hbpt] {
    position: relative;
}

.image-frame[b-0c4r29hbpt] {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(20, 20, 35, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.ceo-image[b-0c4r29hbpt] {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover .ceo-image[b-0c4r29hbpt] {
    transform: scale(1.05);
}

.image-overlay[b-0c4r29hbpt] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.overlay-gradient[b-0c4r29hbpt] {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.floating-badge[b-0c4r29hbpt] {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 68, 68, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 68, 68, 0.3);
    animation: float-b-0c4r29hbpt 3s ease-in-out infinite;
}

@keyframes float-b-0c4r29hbpt {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Content Container */
.ceo-content-container[b-0c4r29hbpt] {
    padding: 40px 0;
}

.content-inner[b-0c4r29hbpt] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Title Section */
.title-section[b-0c4r29hbpt] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leadership-badge[b-0c4r29hbpt] {
    display: inline-block;
    width: fit-content;
    padding: 8px 20px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 50px;
    color: #ff4444;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oxanium', sans-serif;
}

.ceo-name[b-0c4r29hbpt] {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-position[b-0c4r29hbpt] {
    font-size: 1.3rem;
    color: #999;
    margin: 0;
    font-weight: 500;
}

/* Quote Section */
.quote-section[b-0c4r29hbpt] {
    position: relative;
    padding: 40px 0;
}

.quote-icon[b-0c4r29hbpt] {
    position: absolute;
    top: 0;
    left: -20px;
    opacity: 0.3;
}

.ceo-quote[b-0c4r29hbpt] {
    margin: 0;
    padding-left: 60px;
    border-left: 4px solid #ff4444;
}

    .ceo-quote p[b-0c4r29hbpt] {
        font-size: 1.35rem;
        line-height: 1.8;
        color: #ccc;
        font-style: italic;
        margin: 0;
    }

/* CTA Section */
.profile-btn[b-0c4r29hbpt] {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oxanium', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.35);
    position: relative;
    overflow: hidden;
}

    .profile-btn[b-0c4r29hbpt]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .profile-btn:hover[b-0c4r29hbpt]::before {
        left: 100%;
    }

    .profile-btn:hover[b-0c4r29hbpt] {
        transform: translateY(-4px);
        box-shadow: 0 16px 50px rgba(255, 68, 68, 0.5);
    }

    .profile-btn svg[b-0c4r29hbpt] {
        transition: transform 0.3s ease;
    }

    .profile-btn:hover svg[b-0c4r29hbpt] {
        transform: translateX(4px);
    }

/* Section Divider */
.section-divider[b-0c4r29hbpt] {
    margin-top: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .ceo-wrapper[b-0c4r29hbpt] {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ceo-image[b-0c4r29hbpt] {
        height: 500px;
    }

    .ceo-name[b-0c4r29hbpt] {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .elegant-ceo-section[b-0c4r29hbpt] {
        padding: 60px 0;
    }

    .container[b-0c4r29hbpt] {
        padding: 0 20px;
    }

    .ceo-image[b-0c4r29hbpt] {
        height: 400px;
    }

    .ceo-name[b-0c4r29hbpt] {
        font-size: 2rem;
    }

    .ceo-quote p[b-0c4r29hbpt] {
        font-size: 1.1rem;
    }

    .section-divider[b-0c4r29hbpt] {
        margin-top: 60px;
    }
}
/* /Pages/PageTemplate/HeroSlider.razor.rz.scp.css */
/* Animated Title Styles */
.animated-title[b-a0qsmz0p12] {
    display: inline-block;
    position: relative;
}

    .animated-title .char[b-a0qsmz0p12] {
        display: inline-block;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    /* Initial animation on load */
    .animated-title .char[b-a0qsmz0p12] {
        opacity: 0;
        transform: translateY(20px);
        animation: charFadeIn-b-a0qsmz0p12 0.6s forwards;
    }

    .animated-title .char-space[b-a0qsmz0p12] {
        display: inline-block;
        width: 2em; /* Adjust width as needed */
    }

    /* Or simpler - just preserve whitespace */
    .animated-title .char[b-a0qsmz0p12] {
        white-space: pre;
    }

@keyframes charFadeIn-b-a0qsmz0p12 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect */
.animated-title:hover .char[b-a0qsmz0p12] {
    animation: none;
    opacity: 1;
}

.animated-title .char:hover[b-a0qsmz0p12] {
    color: #FF4444;
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 5px 15px rgba(255, 68, 68, 0.5);
}

/* Hero Loading Skeleton */
.hero-loading[b-a0qsmz0p12] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
}

.hero-skeleton-wrapper[b-a0qsmz0p12] {
    width: 100%;
}

.hero-skeleton-content[b-a0qsmz0p12] {
    max-width: 600px;
}

.skeleton[b-a0qsmz0p12] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-a0qsmz0p12 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes loading-b-a0qsmz0p12 {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-hero-title[b-a0qsmz0p12] {
    height: 60px;
    width: 450px;
    margin-bottom: 20px;
}

.skeleton-hero-subtitle[b-a0qsmz0p12] {
    height: 50px;
    width: 350px;
    margin-bottom: 30px;
}

.skeleton-hero-description[b-a0qsmz0p12] {
    height: 20px;
    width: 500px;
    margin-bottom: 40px;
}

.skeleton-hero-button[b-a0qsmz0p12] {
    height: 50px;
    width: 180px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .skeleton-hero-title[b-a0qsmz0p12] {
        width: 100%;
        height: 40px;
    }

    .skeleton-hero-subtitle[b-a0qsmz0p12] {
        width: 80%;
        height: 35px;
    }

    .skeleton-hero-description[b-a0qsmz0p12] {
        width: 100%;
    }

    .skeleton-hero-button[b-a0qsmz0p12] {
        width: 150px;
        height: 45px;
    }
}

/* Pagination Styles */
.ak-swiper-pagination[b-a0qsmz0p12] {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swiper-pagination-bullet[b-a0qsmz0p12] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .swiper-pagination-bullet[b-a0qsmz0p12]::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

.swiper-pagination-bullet-active[b-a0qsmz0p12] {
    color: #fff;
    transform: scale(1.2);
}

    .swiper-pagination-bullet-active[b-a0qsmz0p12]::before {
        border-color: rgba(255, 68, 68, 0.8);
    }

.swiper-pagination-bullet:hover[b-a0qsmz0p12] {
    color: rgba(255, 255, 255, 0.9);
}
.slide-inner[b-a0qsmz0p12] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper[b-a0qsmz0p12] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ak-hero-bg[b-a0qsmz0p12] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay[b-a0qsmz0p12] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.container[b-a0qsmz0p12] {
    position: relative;
    z-index: 2;
}

.hero-contact-info-wrapper[b-a0qsmz0p12] {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
}

.hero-contact-info[b-a0qsmz0p12] {
    justify-content: space-between;
    flex-wrap: wrap;
}

    .hero-contact-info a[b-a0qsmz0p12] {
        text-decoration: none;
        color: white;
        transition: opacity 0.3s;
    }

        .hero-contact-info a:hover[b-a0qsmz0p12] {
            opacity: 0.8;
        }

.swiper-pagination-bullet[b-a0qsmz0p12] {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.swiper-pagination-bullet-active[b-a0qsmz0p12] {
    color: #fff;
    font-weight: bold;
    transform: scale(1.2);
}

.swiper-pagination-bullet:hover[b-a0qsmz0p12] {
    color: rgba(255, 255, 255, 0.8);
}

.ak-swiper-pagination[b-a0qsmz0p12] {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swiper-pagination-bullet[b-a0qsmz0p12] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .swiper-pagination-bullet[b-a0qsmz0p12]::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

.swiper-pagination-bullet-active[b-a0qsmz0p12] {
    color: #fff;
    transform: scale(1.2);
}

    .swiper-pagination-bullet-active[b-a0qsmz0p12]::before {
        border-color: rgba(255, 68, 68, 0.8);
    }

.swiper-pagination-bullet:hover[b-a0qsmz0p12] {
    color: rgba(255, 255, 255, 0.9);
}
/* /Pages/PageTemplate/PricingSection.razor.rz.scp.css */
/* Pricing Skeleton Styles */
.skeleton[b-f6if6kehm1] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-f6if6kehm1 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-f6if6kehm1 {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Pricing Skeleton Styles - Wider Cards */
.pricing[b-f6if6kehm1] {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-skeleton-card[b-f6if6kehm1] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
}

.pricing-skeleton-heading[b-f6if6kehm1] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.skeleton-plan-name[b-f6if6kehm1] {
    width: 70%;
    height: 28px;
}

.skeleton-plan-price[b-f6if6kehm1] {
    width: 55%;
    height: 48px;
}

.skeleton-plan-original[b-f6if6kehm1] {
    width: 45%;
    height: 24px;
}

.pricing-skeleton-features[b-f6if6kehm1] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
}

.pricing-skeleton-feature[b-f6if6kehm1] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.skeleton-feature-icon[b-f6if6kehm1] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-feature-text[b-f6if6kehm1] {
    flex: 1;
    height: 20px;
}

.skeleton-pricing-button[b-f6if6kehm1] {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    margin-top: auto;
}

/* For exactly 3 wider cards in one row on larger screens */
@media (min-width: 1200px) {
    .pricing[b-f6if6kehm1] {
        flex-wrap: nowrap;
        gap: 40px;
    }

    .pricing-skeleton-card[b-f6if6kehm1] {
        flex: 1 1 calc(33.333% - 27px);
        min-width: 350px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .pricing-skeleton-card[b-f6if6kehm1] {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .pricing[b-f6if6kehm1] {
        flex-direction: column;
        align-items: center;
    }

    .pricing-skeleton-card[b-f6if6kehm1] {
        width: 100%;
        max-width: 400px;
        padding: 30px 25px;
    }
}

/* Pricing Section Layout */
.pricing[b-f6if6kehm1] {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card[b-f6if6kehm1] {
    justify-content: space-between;
}

    .pricing-card .opation-all .opation[b-f6if6kehm1] {
        align-items: center;
        justify-content: flex-start;
    }

        .pricing-card .opation-all .opation .title[b-f6if6kehm1] {
            text-align: start;
        }

/* For exactly 3 cards in one row on larger screens */
@media (min-width: 1200px) {
    .pricing[b-f6if6kehm1] {
        flex-wrap: nowrap;
    }
}

/* Pricing Currency Symbol Styling */
.pricing-heading .discount-price[b-f6if6kehm1]::first-letter,
.pricing-heading .main-price[b-f6if6kehm1]::first-letter {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-weight: 600;
}
/* /Pages/PageTemplate/ServiceHighlights.razor.rz.scp.css */
.ak-heartbeat-btn img[b-m2u45coxyn] {
    width: 100px;
    height: 100px;
    max-width: 200px;
}

/* Service Highlights Loading Skeleton */
.service-skeleton-card[b-m2u45coxyn] {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.skeleton-progress[b-m2u45coxyn] {
    margin-bottom: 30px;
}

.skeleton[b-m2u45coxyn] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-m2u45coxyn 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-m2u45coxyn {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-number[b-m2u45coxyn] {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.skeleton-border[b-m2u45coxyn] {
    width: 100%;
    height: 3px;
    border-radius: 2px;
}

.skeleton-service[b-m2u45coxyn] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.skeleton-icon[b-m2u45coxyn] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-info[b-m2u45coxyn] {
    flex: 1;
}

.skeleton-title[b-m2u45coxyn] {
    width: 70%;
    height: 24px;
    margin-bottom: 15px;
}

.skeleton-description[b-m2u45coxyn] {
    width: 100%;
    height: 14px;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .row.g-4[b-m2u45coxyn] {
        row-gap: 1.5rem !important;
    }
}
/* /Pages/PageTemplate/ServicesStickySection.razor.rz.scp.css */
/* Loading Skeleton Styles */
.skeleton[b-dedgzdsxhf] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-dedgzdsxhf 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-dedgzdsxhf {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Service Card Skeleton */
.service-card-skeleton[b-dedgzdsxhf] {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn-b-dedgzdsxhf 0.4s ease-out forwards;
}

@keyframes fadeIn-b-dedgzdsxhf {
    to {
        opacity: 1;
    }
}

.skeleton-card-wrapper[b-dedgzdsxhf] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease;
}

.skeleton-card-img[b-dedgzdsxhf] {
    width: 450px;
    height: 320px;
    border-radius: 0;
    margin: 0;
}

.card-info-skeleton[b-dedgzdsxhf] {
    padding: 25px;
}

.skeleton-card-title[b-dedgzdsxhf] {
    width: 75%;
    height: 26px;
    margin-bottom: 18px;
    border-radius: 6px;
}

.skeleton-card-text-group[b-dedgzdsxhf] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.skeleton-card-desp[b-dedgzdsxhf] {
    width: 100%;
    height: 16px;
    border-radius: 4px;
}

.skeleton-more-btn[b-dedgzdsxhf] {
    width: 130px;
    height: 42px;
    border-radius: 25px;
    margin-top: 10px;
}

/* Section Heading Skeleton */
.skeleton-section-heading[b-dedgzdsxhf] {
    margin-bottom: 30px;
}

.skeleton-bg-text[b-dedgzdsxhf] {
    width: 120px;
    height: 16px;
    margin-bottom: 18px;
    opacity: 0.6;
    border-radius: 4px;
}

.skeleton-section-title[b-dedgzdsxhf] {
    width: 280px;
    height: 38px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.skeleton-subtitle-group[b-dedgzdsxhf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-section-subtitle[b-dedgzdsxhf] {
    width: 100%;
    height: 16px;
    border-radius: 4px;
}

.skeleton-view-all-btn[b-dedgzdsxhf] {
    width: 190px;
    height: 45px;
    border-radius: 25px;
}

/* Responsive Skeleton */
@media (max-width: 991px) {
    .skeleton-card-img[b-dedgzdsxhf] {
        height: 280px;
    }

    .card-info-skeleton[b-dedgzdsxhf] {
        padding: 20px;
    }

    .skeleton-section-title[b-dedgzdsxhf] {
        width: 240px;
        height: 32px;
    }

    .skeleton-card-title[b-dedgzdsxhf] {
        height: 24px;
    }
}

@media (max-width: 575px) {
    .skeleton-card-img[b-dedgzdsxhf] {
        height: 220px;
    }

    .card-info-skeleton[b-dedgzdsxhf] {
        padding: 18px;
    }

    .skeleton-card-title[b-dedgzdsxhf] {
        width: 85%;
        height: 22px;
    }

    .skeleton-section-title[b-dedgzdsxhf] {
        width: 200px;
        height: 28px;
    }

    .skeleton-view-all-btn[b-dedgzdsxhf] {
        width: 100%;
    }

    .skeleton-more-btn[b-dedgzdsxhf] {
        width: 100%;
    }
}


/* Actual Service Card Styles */
.service-card[b-dedgzdsxhf] {
    min-height: 320px;
}

    .service-card .card-img img[b-dedgzdsxhf] {
        width: 350px;
        height: 320px;
        max-height: 380px;
    }
/* /Pages/PageTemplate/StatsCounter.razor.rz.scp.css */
/* Loading Skeleton Styles */
.skeleton[b-8r93djnyow] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-8r93djnyow 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-8r93djnyow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Stats Skeleton */
.stats-skeleton[b-8r93djnyow] {
    text-align: center;
    padding: 30px 20px;
}

.skeleton-number-group[b-8r93djnyow] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.skeleton-number[b-8r93djnyow] {
    width: 120px;
    height: 60px;
    border-radius: 8px;
}

.skeleton-plus[b-8r93djnyow] {
    width: 30px;
    height: 60px;
    border-radius: 8px;
}

.skeleton-label[b-8r93djnyow] {
    width: 180px;
    height: 20px;
    margin: 0 auto;
}

/* Responsive Skeleton */
@media (max-width: 991px) {
    .stats-skeleton[b-8r93djnyow] {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .skeleton-number[b-8r93djnyow] {
        width: 100px;
        height: 50px;
    }

    .skeleton-plus[b-8r93djnyow] {
        width: 25px;
        height: 50px;
    }

    .skeleton-label[b-8r93djnyow] {
        width: 150px;
        height: 18px;
    }
}

@media (max-width: 575px) {
    .skeleton-number[b-8r93djnyow] {
        width: 80px;
        height: 40px;
    }

    .skeleton-plus[b-8r93djnyow] {
        width: 20px;
        height: 40px;
    }

    .skeleton-label[b-8r93djnyow] {
        width: 120px;
        height: 16px;
    }
}
/* /Pages/PageTemplate/TeamGrid.razor.rz.scp.css */
/* Team Grid Styles */
.elegant-team-grid[b-3alt47sd7s] {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.container[b-3alt47sd7s] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.team-header[b-3alt47sd7s] {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge[b-3alt47sd7s] {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 50px;
    color: #ff4444;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 24px;
}

.section-title[b-3alt47sd7s] {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle[b-3alt47sd7s] {
    font-size: 1.15rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid */
.team-members-grid[b-3alt47sd7s] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Team Member Card */
.team-member-card[b-3alt47sd7s] {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(20, 20, 35, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .team-member-card[b-3alt47sd7s]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .team-member-card:hover[b-3alt47sd7s] {
        transform: translateY(-12px);
        border-color: rgba(255, 68, 68, 0.3);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 68, 68, 0.15);
    }

        .team-member-card:hover[b-3alt47sd7s]::before {
            opacity: 1;
        }

.card-link[b-3alt47sd7s] {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

/* Image Section */
.member-image-wrapper[b-3alt47sd7s] {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.member-image[b-3alt47sd7s] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-card:hover .member-image[b-3alt47sd7s] {
    transform: scale(1.1);
}

.image-overlay[b-3alt47sd7s] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover .image-overlay[b-3alt47sd7s] {
    opacity: 1;
}

.overlay-icon[b-3alt47sd7s] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.8) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-card:hover .overlay-icon[b-3alt47sd7s] {
    transform: scale(1) rotate(0deg);
}

/* Content Section */
.member-content[b-3alt47sd7s] {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-details[b-3alt47sd7s] {
    flex: 1;
}

.member-name[b-3alt47sd7s] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Oxanium', sans-serif;
    transition: color 0.3s ease;
}

.team-member-card:hover .member-name[b-3alt47sd7s] {
    color: #ff4444;
}

.member-position[b-3alt47sd7s] {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.member-socials[b-3alt47sd7s] {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link[b-3alt47sd7s] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover[b-3alt47sd7s] {
        background: #ff4444;
        color: #fff;
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .team-members-grid[b-3alt47sd7s] {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .section-title[b-3alt47sd7s] {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .elegant-team-grid[b-3alt47sd7s] {
        padding: 60px 0;
    }

    .container[b-3alt47sd7s] {
        padding: 0 20px;
    }

    .team-header[b-3alt47sd7s] {
        margin-bottom: 60px;
    }

    .section-title[b-3alt47sd7s] {
        font-size: 2rem;
    }

    .team-members-grid[b-3alt47sd7s] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .member-image-wrapper[b-3alt47sd7s] {
        height: 350px;
    }
}
/* /Pages/PageTemplate/TeamSection.razor.rz.scp.css */
/* Team Section Loading Skeleton */
.skeleton[b-f4b3o6rn8d] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-f4b3o6rn8d 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-f4b3o6rn8d {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.team-skeleton-wrapper[b-f4b3o6rn8d] {
    margin-bottom: 50px;
}

.team-skeleton-heading[b-f4b3o6rn8d] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.team-skeleton-card[b-f4b3o6rn8d] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.skeleton-team-image[b-f4b3o6rn8d] {
    width: 100%;
    height: 350px;
    border-radius: 0;
}

.team-skeleton-info[b-f4b3o6rn8d] {
    padding: 25px;
}

.skeleton-team-name[b-f4b3o6rn8d] {
    width: 65%;
    height: 24px;
    margin-bottom: 12px;
}

.skeleton-team-position[b-f4b3o6rn8d] {
    width: 50%;
    height: 18px;
    margin-bottom: 20px;
}

.team-skeleton-social[b-f4b3o6rn8d] {
    display: flex;
    gap: 12px;
}

.skeleton-social-icon[b-f4b3o6rn8d] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.skeleton-section-subtitle[b-f4b3o6rn8d] {
    width: 80%;
    max-width: 500px;
    height: 18px;
    margin-top: 12px;
}

.skeleton-view-more[b-f4b3o6rn8d] {
    width: 140px;
    height: 45px;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .team-skeleton-heading[b-f4b3o6rn8d] {
        flex-direction: column;
        gap: 20px;
    }

    .skeleton-team-image[b-f4b3o6rn8d] {
        height: 300px;
    }

    .team-skeleton-info[b-f4b3o6rn8d] {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .skeleton-team-image[b-f4b3o6rn8d] {
        height: 250px;
    }

    .team-skeleton-info[b-f4b3o6rn8d] {
        padding: 18px;
    }

    .skeleton-team-name[b-f4b3o6rn8d] {
        width: 75%;
        height: 22px;
    }

    .skeleton-team-position[b-f4b3o6rn8d] {
        width: 60%;
        height: 16px;
    }

    .skeleton-social-icon[b-f4b3o6rn8d] {
        width: 34px;
        height: 34px;
    }

    .skeleton-section-subtitle[b-f4b3o6rn8d] {
        width: 100%;
    }

    .skeleton-view-more[b-f4b3o6rn8d] {
        width: 120px;
        height: 42px;
    }
}
/* /Pages/PageTemplate/TestimonialSlider.razor.rz.scp.css */
/* Loading Skeleton Styles */
.skeleton[b-5xwii6oxzy] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-5xwii6oxzy 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-5xwii6oxzy {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-section-heading[b-5xwii6oxzy] {
    margin-bottom: 20px;
}

.skeleton-bg-text[b-5xwii6oxzy] {
    width: 120px;
    height: 14px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.skeleton-section-title[b-5xwii6oxzy] {
    width: 300px;
    height: 32px;
}

.testimonal-controll-skeleton[b-5xwii6oxzy] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.skeleton-button[b-5xwii6oxzy] {
    width: 100px;
    height: 40px;
    border-radius: 20px;
}

.testimonial-skeleton-wrapper[b-5xwii6oxzy] {
    position: relative;
    padding: 40px 0;
}

.testimonial-skeleton-card[b-5xwii6oxzy] {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.testimonial-skeleton-content[b-5xwii6oxzy] {
    flex: 1;
}

.skeleton-header[b-5xwii6oxzy] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.skeleton-name[b-5xwii6oxzy] {
    width: 150px;
    height: 24px;
    margin-bottom: 10px;
}

.skeleton-location[b-5xwii6oxzy] {
    width: 120px;
    height: 16px;
}

.skeleton-quote-icon[b-5xwii6oxzy] {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.skeleton-text[b-5xwii6oxzy] {
    width: 100%;
    height: 18px;
    margin-bottom: 12px;
}

.skeleton-image[b-5xwii6oxzy] {
    width: 200px;
    height: 250px;
    border-radius: 12px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .ak-testimonal-controll[b-5xwii6oxzy] {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-skeleton-card[b-5xwii6oxzy] {
        flex-direction: column;
        padding: 30px 20px;
    }

    .skeleton-image[b-5xwii6oxzy] {
        width: 150px;
        height: 200px;
    }

    .skeleton-section-title[b-5xwii6oxzy] {
        width: 250px;
    }
}

@media (max-width: 575px) {
    .testimonial-skeleton-card[b-5xwii6oxzy] {
        padding: 20px 15px;
    }

    .skeleton-section-title[b-5xwii6oxzy] {
        width: 200px;
        height: 28px;
    }

    .skeleton-name[b-5xwii6oxzy] {
        width: 120px;
        height: 20px;
    }

    .skeleton-location[b-5xwii6oxzy] {
        width: 100px;
        height: 14px;
    }

    .skeleton-quote-icon[b-5xwii6oxzy] {
        width: 40px;
        height: 40px;
    }

    .skeleton-image[b-5xwii6oxzy] {
        width: 120px;
        height: 160px;
    }

    .skeleton-button[b-5xwii6oxzy] {
        width: 80px;
        height: 36px;
    }
}

.ak-testimonal .testimonal-info.ak-style1 .testimaonial-slide-img[b-5xwii6oxzy] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.testimonal-img img[b-5xwii6oxzy] {
    max-height: 380px;
}
/* /Pages/PageTemplate/TrustedClients.razor.rz.scp.css */
.trusted-clients-slider[b-yk2s7ageri] {
    padding: 40px 0;
    overflow: hidden;
}

.slider-wrapper[b-yk2s7ageri] {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .slider-wrapper[b-yk2s7ageri]::before,
    .slider-wrapper[b-yk2s7ageri]::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
    }

.slider-track[b-yk2s7ageri] {
    display: flex;
    gap: 40px;
    animation: scroll-b-yk2s7ageri 30s linear infinite;
    width: fit-content;
}

    .slider-track:hover[b-yk2s7ageri] {
        animation-play-state: paused;
    }

.slide[b-yk2s7ageri] {
    flex-shrink: 0;
}

.trusted-client[b-yk2s7ageri] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

    .trusted-client:hover[b-yk2s7ageri] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .trusted-client img[b-yk2s7ageri],
    .trusted-client a img[b-yk2s7ageri] {
        max-width: 100%;
        max-height: 120px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
    }

    .trusted-client:hover img[b-yk2s7ageri],
    .trusted-client a:hover img[b-yk2s7ageri] {
        filter: grayscale(0%);
        opacity: 1;
    }

    .trusted-client a[b-yk2s7ageri] {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

@keyframes scroll-b-yk2s7ageri {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Loading Skeleton Styles */
.skeleton[b-yk2s7ageri] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-yk2s7ageri 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-yk2s7ageri {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-section-heading[b-yk2s7ageri] {
    text-align: center;
    margin-bottom: 30px;
}

.skeleton-bg-text[b-yk2s7ageri] {
    width: 100px;
    height: 14px;
    margin: 0 auto 15px;
    opacity: 0.5;
}

.skeleton-section-title[b-yk2s7ageri] {
    width: 300px;
    height: 32px;
    margin: 0 auto;
}

.slider-wrapper-skeleton[b-yk2s7ageri] {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track-skeleton[b-yk2s7ageri] {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.skeleton-client[b-yk2s7ageri] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.skeleton-logo[b-yk2s7ageri] {
    width: 140px;
    height: 80px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .slider-track[b-yk2s7ageri] {
        gap: 20px;
        animation-duration: 20s;
    }

    .trusted-client[b-yk2s7ageri] {
        width: 140px;
        height: 100px;
        padding: 15px;
    }

        .trusted-client img[b-yk2s7ageri] {
            max-height: 60px;
        }

    .skeleton-section-title[b-yk2s7ageri] {
        width: 200px;
        height: 28px;
    }

    .skeleton-client[b-yk2s7ageri] {
        width: 140px;
        height: 100px;
    }

    .skeleton-logo[b-yk2s7ageri] {
        width: 100px;
        height: 60px;
    }

    .slider-track-skeleton[b-yk2s7ageri] {
        gap: 20px;
    }
}
/* /Pages/PageTemplate/VideoSection.razor.rz.scp.css */
video[b-ousehj8rnv] {
    width: 100%;
    height: auto;
    display: block;
}

.video-section-bg-img[b-ousehj8rnv]{
    max-height: 650px
}
/* /Pages/PageTemplate/WhyChooseUs.razor.rz.scp.css */
/* Why Choose Us Loading Skeleton */
.skeleton[b-rbyh1vdlj0] {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-b-rbyh1vdlj0 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading-b-rbyh1vdlj0 {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.choose-us-info-skeleton[b-rbyh1vdlj0] {
    flex: 1;
}

.skeleton-section-heading[b-rbyh1vdlj0] {
    margin-bottom: 30px;
}

.skeleton-bg-text[b-rbyh1vdlj0] {
    width: 120px;
    height: 20px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.skeleton-heading-title[b-rbyh1vdlj0] {
    width: 250px;
    height: 40px;
    margin-bottom: 20px;
}

.skeleton-heading-subtitle[b-rbyh1vdlj0] {
    width: 100%;
    height: 16px;
    margin-bottom: 10px;
}

.stroke-heading-skeleton[b-rbyh1vdlj0] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-feature[b-rbyh1vdlj0] {
    width: 90%;
    height: 50px;
    border-radius: 8px;
}

.skeleton-button[b-rbyh1vdlj0] {
    width: 180px;
    height: 50px;
    border-radius: 25px;
}

.choose-us-img-skeleton[b-rbyh1vdlj0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skeleton-main-image[b-rbyh1vdlj0] {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .choose-us-contain[b-rbyh1vdlj0] {
        flex-direction: column;
        gap: 40px;
    }

    .skeleton-heading-title[b-rbyh1vdlj0] {
        width: 200px;
    }

    .skeleton-main-image[b-rbyh1vdlj0] {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .skeleton-heading-title[b-rbyh1vdlj0] {
        width: 150px;
        height: 32px;
    }

    .skeleton-feature[b-rbyh1vdlj0] {
        height: 40px;
    }

    .skeleton-main-image[b-rbyh1vdlj0] {
        height: 250px;
    }

    .skeleton-button[b-rbyh1vdlj0] {
        width: 140px;
        height: 45px;
    }
}

.why-choose-us-elegant[b-rbyh1vdlj0] {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

    .why-choose-us-elegant[b-rbyh1vdlj0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, rgba(255, 68, 68, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.elegant-grid[b-rbyh1vdlj0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content Styles */
.content-side[b-rbyh1vdlj0] {
    padding-right: 40px;
}

.section-header[b-rbyh1vdlj0] {
    margin-bottom: 30px;
    position: relative;
}

.background-text[b-rbyh1vdlj0] {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ff4444;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.main-title[b-rbyh1vdlj0] {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.title-underline[b-rbyh1vdlj0] {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4444 0%, transparent 100%);
    margin-top: 20px;
    border-radius: 2px;
}

.subtitle-text[b-rbyh1vdlj0] {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.features-elegant[b-rbyh1vdlj0] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item[b-rbyh1vdlj0] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-item[b-rbyh1vdlj0]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
        transition: height 0.3s ease;
    }

    .feature-item:hover[b-rbyh1vdlj0] {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 68, 68, 0.3);
        transform: translateX(10px);
    }

        .feature-item:hover[b-rbyh1vdlj0]::before {
            height: 100%;
        }

.feature-icon[b-rbyh1vdlj0] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.feature-text[b-rbyh1vdlj0] {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.action-wrapper[b-rbyh1vdlj0] {
    margin-top: 40px;
}

.elegant-btn[b-rbyh1vdlj0] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
}

    .elegant-btn[b-rbyh1vdlj0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .elegant-btn:hover[b-rbyh1vdlj0] {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(255, 68, 68, 0.6);
    }

        .elegant-btn:hover[b-rbyh1vdlj0]::before {
            left: 100%;
        }

    .elegant-btn svg[b-rbyh1vdlj0] {
        transition: transform 0.3s ease;
    }

    .elegant-btn:hover svg[b-rbyh1vdlj0] {
        transform: translateX(4px);
    }

/* Right Image Styles */
.image-side[b-rbyh1vdlj0] {
    position: relative;
}

.image-container[b-rbyh1vdlj0] {
    position: relative;
    padding: 20px;
}

.main-image-wrapper[b-rbyh1vdlj0] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.main-image[b-rbyh1vdlj0] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image[b-rbyh1vdlj0] {
    transform: scale(1.05);
}

.image-overlay[b-rbyh1vdlj0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Badge */
.floating-badge[b-rbyh1vdlj0] {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
    border: 3px solid #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.4);
    animation: float-b-rbyh1vdlj0 3s ease-in-out infinite;
}

@keyframes float-b-rbyh1vdlj0 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-content[b-rbyh1vdlj0] {
    text-align: center;
    color: #ff4444;
}

    .badge-content svg[b-rbyh1vdlj0] {
        margin-bottom: 10px;
    }

.badge-text[b-rbyh1vdlj0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title[b-rbyh1vdlj0] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.badge-subtitle[b-rbyh1vdlj0] {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* Decorative Elements */
.decorative-elements[b-rbyh1vdlj0] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dot[b-rbyh1vdlj0] {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
}

.dot-1[b-rbyh1vdlj0] {
    top: 15%;
    right: 10%;
    animation: pulse-b-rbyh1vdlj0 2s ease-in-out infinite;
}

.dot-2[b-rbyh1vdlj0] {
    bottom: 20%;
    right: 15%;
    animation: pulse-b-rbyh1vdlj0 2s ease-in-out 0.5s infinite;
}

.dot-3[b-rbyh1vdlj0] {
    top: 50%;
    left: 5%;
    animation: pulse-b-rbyh1vdlj0 2s ease-in-out 1s infinite;
}

@keyframes pulse-b-rbyh1vdlj0 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.line[b-rbyh1vdlj0] {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    height: 2px;
    animation: lineMove-b-rbyh1vdlj0 3s ease-in-out infinite;
}

.line-1[b-rbyh1vdlj0] {
    top: 30%;
    right: 0;
    width: 100px;
    animation-delay: 0s;
}

.line-2[b-rbyh1vdlj0] {
    bottom: 40%;
    right: 0;
    width: 80px;
    animation-delay: 1.5s;
}

@keyframes lineMove-b-rbyh1vdlj0 {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }

    50% {
        transform: translateX(-20px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .elegant-grid[b-rbyh1vdlj0] {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .content-side[b-rbyh1vdlj0] {
        padding-right: 0;
    }

    .main-title[b-rbyh1vdlj0] {
        font-size: 36px;
    }

    .floating-badge[b-rbyh1vdlj0] {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 575px) {
    .main-title[b-rbyh1vdlj0] {
        font-size: 28px;
    }

    .feature-text[b-rbyh1vdlj0] {
        font-size: 16px;
    }

    .badge-title[b-rbyh1vdlj0] {
        font-size: 9px;
    }

    .badge-subtitle[b-rbyh1vdlj0] {
        font-size: 8px;
    }
}
/* /Pages/Service.razor.rz.scp.css */
/* Elegant Services Section */
.elegant-services-section[b-h076soug1b] {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

    .elegant-services-section[b-h076soug1b]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(255, 68, 68, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

.container[b-h076soug1b] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header[b-h076soug1b] {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.background-text[b-h076soug1b] {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Oxanium', sans-serif;
}

.section-title[b-h076soug1b] {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Oxanium', sans-serif;
}

.section-subtitle[b-h076soug1b] {
    font-size: 1.15rem;
    color: #999;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid[b-h076soug1b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card[b-h076soug1b] {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(20, 20, 35, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .service-card[b-h076soug1b]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .service-card:hover[b-h076soug1b] {
        transform: translateY(-12px);
        border-color: rgba(255, 68, 68, 0.3);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 68, 68, 0.15);
    }

        .service-card:hover[b-h076soug1b]::before {
            opacity: 1;
        }

.card-link[b-h076soug1b] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Card Image */
.card-image-wrapper[b-h076soug1b] {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-image[b-h076soug1b] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image[b-h076soug1b] {
    transform: scale(1.1);
}

.card-overlay[b-h076soug1b] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-overlay[b-h076soug1b] {
    opacity: 1;
}

.overlay-icon[b-h076soug1b] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.8) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .overlay-icon[b-h076soug1b] {
    transform: scale(1) rotate(0deg);
}

/* Card Content */
.card-content[b-h076soug1b] {
    padding: 36px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-number[b-h076soug1b] {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 68, 68, 0.15);
    position: absolute;
    top: 20px;
    right: 36px;
    font-family: 'Oxanium', sans-serif;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover .card-number[b-h076soug1b] {
    color: rgba(255, 68, 68, 0.3);
    transform: scale(1.1);
}

.card-title[b-h076soug1b] {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .card-title[b-h076soug1b] {
    color: #ff4444;
}

.card-description[b-h076soug1b] {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
}

/* Card Footer */
.card-footer[b-h076soug1b] {
    display: flex;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.view-more[b-h076soug1b] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Oxanium', sans-serif;
    transition: all 0.3s ease;
}

    .view-more svg[b-h076soug1b] {
        transition: transform 0.3s ease;
    }

.service-card:hover .view-more svg[b-h076soug1b] {
    transform: translateX(6px);
}

/* View All Button */
.view-all-wrapper[b-h076soug1b] {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.view-all-btn[b-h076soug1b] {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oxanium', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.35);
    position: relative;
    overflow: hidden;
}

    .view-all-btn[b-h076soug1b]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .view-all-btn:hover[b-h076soug1b]::before {
        left: 100%;
    }

    .view-all-btn:hover[b-h076soug1b] {
        transform: translateY(-4px);
        box-shadow: 0 16px 50px rgba(255, 68, 68, 0.5);
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8888 100%);
    }

    .view-all-btn svg[b-h076soug1b] {
        transition: transform 0.3s ease;
    }

    .view-all-btn:hover svg[b-h076soug1b] {
        transform: translateX(4px);
    }

/* Skeleton Styles */
.skeleton[b-h076soug1b] {
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 68, 68, 0.08) 50%, rgba(255, 255, 255, 0.03) 100% );
    background-size: 200% 100%;
    animation: shimmer-b-h076soug1b 2s infinite;
    border-radius: 8px;
}

@keyframes shimmer-b-h076soug1b {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.section-header-skeleton[b-h076soug1b] {
    text-align: center;
    margin-bottom: 80px;
}

.skeleton-bg-text[b-h076soug1b] {
    width: 400px;
    height: 80px;
    margin: 0 auto 30px;
    opacity: 0.3;
}

.skeleton-title[b-h076soug1b] {
    width: 500px;
    height: 60px;
    margin: 0 auto 20px;
}

.skeleton-subtitle[b-h076soug1b] {
    width: 700px;
    height: 20px;
    margin: 10px auto;
}

.service-card-skeleton[b-h076soug1b] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    animation: fadeIn-b-h076soug1b 0.5s ease;
}

.skeleton-image[b-h076soug1b] {
    width: 100%;
    height: 300px;
}

.skeleton-content[b-h076soug1b] {
    padding: 36px;
}

.skeleton-number[b-h076soug1b] {
    width: 80px;
    height: 60px;
    margin-bottom: 20px;
}

.skeleton-card-title[b-h076soug1b] {
    width: 70%;
    height: 28px;
    margin-bottom: 16px;
}

.skeleton-card-desc[b-h076soug1b] {
    width: 100%;
    height: 16px;
    margin-bottom: 12px;
}

.skeleton-view-link[b-h076soug1b] {
    width: 140px;
    height: 20px;
    margin-top: 20px;
}

.skeleton-view-btn[b-h076soug1b] {
    width: 250px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50px;
}

@keyframes fadeIn-b-h076soug1b {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid[b-h076soug1b] {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .section-title[b-h076soug1b] {
        font-size: 2.5rem;
    }

    .background-text[b-h076soug1b] {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .elegant-services-section[b-h076soug1b] {
        padding: 60px 0;
    }

    .container[b-h076soug1b] {
        padding: 0 20px;
    }

    .section-header[b-h076soug1b] {
        margin-bottom: 60px;
    }

    .section-title[b-h076soug1b] {
        font-size: 2rem;
    }

    .background-text[b-h076soug1b] {
        font-size: 4rem;
    }

    .services-grid[b-h076soug1b] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-image-wrapper[b-h076soug1b] {
        height: 240px;
    }

    .card-content[b-h076soug1b] {
        padding: 28px;
    }

    .card-number[b-h076soug1b] {
        font-size: 3rem;
        right: 28px;
    }

    .card-title[b-h076soug1b] {
        font-size: 1.4rem;
    }

    .view-all-btn[b-h076soug1b] {
        padding: 16px 40px;
        font-size: 0.9rem;
    }
}
