  
        .klab_doiposle {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 30px 0;
            background: linear-gradient(to right, #ffffff 0%, #e8f4f8 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(32, 98, 145, 0.15);
            border: 1px solid #d0e5f0;
            margin: 20px 0;
        }
        
        .klab_doiposle-header {
            text-align: center;
            margin-bottom: 25px;
            padding: 0 20px;
        }
        
        .klab_doiposle-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2a6b9c;
            margin-bottom: 10px;
        }
        
        .klab_doiposle-subtitle {
            font-size: 16px;
            color: #4a7ea5;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        .klab_doiposle-container {
            display: flex;
            width: max-content;
            animation: klab_doiposle-scroll 40s linear infinite;
        }
        
        .klab_doiposle-container:hover {
            animation-play-state: paused;
        }
        
        .klab_doiposle-item {
            flex-shrink: 0;
            width: 220px;
            height: 170px;
            margin: 0 15px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 8px 20px rgba(32, 98, 145, 0.2);
            border: 2px solid #e6f2f9;
        }
        
        .klab_doiposle-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(32, 98, 145, 0.3);
            border-color: #a4d0ee;
        }
        
        .klab_doiposle-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .klab_doiposle-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            padding: 15px 10px 10px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .klab_doiposle-item:hover .klab_doiposle-item-overlay {
            opacity: 1;
        }
        
        .klab_doiposle-item-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .klab_doiposle-item-desc {
            font-size: 12px;
            opacity: 0.9;
        }
        
        .klab_doiposle-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.92);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
        }
        
        .klab_doiposle-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .klab_doiposle-modal-content {
            max-width: 90%;
            max-height: 85%;
            box-shadow: 0 0 40px rgba(82, 171, 240, 0.25);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: white;
            padding: 20px;
        }
        
        .klab_doiposle-modal-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        .klab_doiposle-modal-title {
            font-size: 20px;
            color: #2a6b9c;
            margin: 15px 0 5px;
            text-align: center;
        }
        
        .klab_doiposle-modal-desc {
            font-size: 16px;
            color: #4a7ea5;
            text-align: center;
            line-height: 1.5;
        }
        
        .klab_doiposle-close {
            position: absolute;
            top: 25px;
            right: 30px;
            color: white;
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s ease;
            background: #2a6b9c;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .klab_doiposle-close:hover {
            color: #ff9d9d;
            background: #1c5380;
        }
        
        .klab_doiposle-medical-icons {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 25px;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        
        .klab_doiposle-medical-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #2a6b9c;
            font-size: 13px;
            font-weight: 500;
        }
        
        .klab_doiposle-medical-icon i {
            font-size: 28px;
            margin-bottom: 8px;
            color: #3c8dbc;
        }
        
        @keyframes klab_doiposle-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-220px * 6 - 15px * 12));
            }
        }
        
        /* Адаптивность */
        @media (max-width: 1400px) {
            .klab_doiposle-item {
                width: 200px;
                height: 155px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-200px * 6 - 15px * 12));
                }
            }
        }
        
        @media (max-width: 1200px) {
            .klab_doiposle-item {
                width: 180px;
                height: 140px;
                margin: 0 12px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-180px * 6 - 12px * 12));
                }
            }
        }
        
        @media (max-width: 992px) {
            .klab_doiposle-item {
                width: 160px;
                height: 125px;
                margin: 0 10px;
            }
            
            .klab_doiposle-title {
                font-size: 24px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-160px * 6 - 10px * 12));
                }
            }
        }
        
        @media (max-width: 768px) {
            .klab_doiposle-item {
                width: 140px;
                height: 110px;
                margin: 0 8px;
            }
            
            .klab_doiposle-title {
                font-size: 22px;
            }
            
            .klab_doiposle-subtitle {
                font-size: 14px;
            }
            
            .klab_doiposle-medical-icons {
                gap: 15px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-140px * 6 - 8px * 12));
                }
            }
        }
        
        @media (max-width: 576px) {
            .klab_doiposle-item {
                width: 120px;
                height: 95px;
                margin: 0 6px;
            }
            
            .klab_doiposle-title {
                font-size: 20px;
            }
            
            .klab_doiposle-medical-icons {
                gap: 10px;
            }
            
            .klab_doiposle-medical-icon {
                font-size: 11px;
            }
            
            .klab_doiposle-medical-icon i {
                font-size: 22px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-120px * 6 - 6px * 12));
                }
            }
        }
        
        @media (max-width: 400px) {
            .klab_doiposle-item {
                width: 110px;
                height: 85px;
                margin: 0 5px;
            }
            
            .klab_doiposle-title {
                font-size: 18px;
            }
            
            @keyframes klab_doiposle-scroll {
                100% {
                    transform: translateX(calc(-110px * 6 - 5px * 12));
                }
            }
        }
        
        /* Для устройств с touch-экранами */
        @media (hover: none) {
            .klab_doiposle-container:active {
                animation-play-state: paused;
            }
            
            .klab_doiposle-item-overlay {
                opacity: 1;
            }
        }
  
  
  
  
  
  
  
  
  
  
  
  .klab_niz_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .klab_niz_header {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: white;
        padding: 20px;
        text-align: center;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .klab_niz_heading {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .klab_niz_content {
        background: white;
        border-radius: 15px;
        padding: 25px;
        margin-top: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .klab_niz_text {
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Стили для мобильного меню - скрыты по умолчанию */
    .klab_niz_mobile_menu {
        display: none;
    }
    
    /* Показываем меню только на мобильных устройствах */
    @media (max-width: 768px) {
        body {
            padding-bottom: 80px; /* Чтобы контент не перекрывался меню */
        }
        
        .klab_niz_mobile_menu {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            justify-content: space-around;
            padding: 12px 0;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .klab_niz_menu_btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 33.33%;
            padding: 10px 0;
            border: none;
            background: transparent;
            color: #555;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .klab_niz_menu_btn i {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }
        
        .klab_niz_menu_btn:active {
            color: #2575fc;
            transform: scale(0.95);
        }
        
        .klab_niz_whatsapp {
            color: #25D366;
        }
        
        /* Анимация нажатия для всех кнопок меню */
        .klab_niz_menu_btn:active {
            transform: scale(0.95);
        }
    }
    
    /* Стили для модального окна */
    .klab_niz_modal_overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .klab_niz_modal_overlay.klab_niz_active {
        opacity: 1;
        visibility: visible;
    }
    
    .klab_niz_modal {
        background: white;
        width: 90%;
        max-width: 400px;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }
    
    .klab_niz_modal_overlay.klab_niz_active .klab_niz_modal {
        transform: translateY(0);
    }
    
    .klab_niz_modal_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .klab_niz_modal_title {
        font-size: 1.4rem;
        color: #2575fc;
        font-weight: 600;
    }
    
    .klab_niz_close_btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #999;
        cursor: pointer;
        transition: color 0.3s;
    }
    
    .klab_niz_close_btn:hover {
        color: #ff4757;
    }
    
    .klab_niz_form_group {
        margin-bottom: 20px;
    }
    
    .klab_niz_form_group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #555;
    }
    
    .klab_niz_form_control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .klab_niz_form_control:focus {
        border-color: #2575fc;
        outline: none;
    }
    
    .klab_niz_checkbox_group {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .klab_niz_checkbox_group input {
        margin-top: 3px;
        margin-right: 10px;
    }
    
    .klab_niz_checkbox_group label {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }
    
    .klab_niz_submit_btn {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 14px 20px;
        width: 100%;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .klab_niz_submit_btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 10px rgba(37, 117, 252, 0.4);
    }
    
    .klab_niz_notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 100000;          /* выше шапки и оверлеев */
    pointer-events: none;     /* не блокирует клики по странице */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
    
    .klab_niz_notification.klab_niz_success {
        background: #2ed573;
        opacity: 1 !important;
    visibility: visible !important;
    }
    
    .klab_niz_notification.klab_niz_error {
        background: #ff4757;
        opacity: 1 !important;
    visibility: visible !important;
    }
    
    /* Дополнительные стили только для мобильных */
    @media (max-width: 480px) {
        .klab_niz_header {
            padding: 15px;
        }
        
        .klab_niz_heading {
            font-size: 1.5rem;
        }
        
        .klab_niz_content {
            padding: 20px 15px;
        }
        
        .klab_niz_modal {
            padding: 20px;
        }
        
        .klab_niz_modal_title {
            font-size: 1.2rem;
        }
    }
    
    /* Стили для десктопной версии */
    @media (min-width: 769px) {
        .klab_niz_desktop_notice {
            display: block;
            text-align: center;
            padding: 20px;
            background: #ff4757;
            color: white;
            border-radius: 10px;
            margin: 20px 0;
        }
    }
    
    @media (max-width: 768px) {
        .klab_niz_desktop_notice {
            display: none;
        }
    }
    
    .klab_niz_list {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .klab_niz_list li {
        margin-bottom: 8px;
    }
    
    .klab_niz_consent_error {
        color: #ff4757;
        font-size: 0.9rem;
        margin-top: 5px;
        display: none;
    }
    
    .klab_niz_phone_error {
        color: #ff4757;
        font-size: 0.9rem;
        margin-top: 5px;
        display: none;
    }








     /* Стили для модального окна */
        .klab_modal_overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .klab_modal_overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .klab_modal {
            background: white;
            width: 90%;
            max-width: 400px;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .klab_modal_overlay.active .klab_modal {
            transform: translateY(0);
        }
        
        .klab_modal_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-right: 30px;
        }
        
        .klab_modal_title {
            font-size: 1.4rem;
            color: #2575fc;
            font-weight: 600;
            margin: 0;
        }
        
        .klab_close_btn {
            background: none;
            border: none;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
            padding: 5px;
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10001;
            line-height: 1;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .klab_close_btn:hover {
            color: #ff4757;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 50%;
        }
        
        .klab_form_group {
            margin-bottom: 20px;
        }
        
        .klab_form_group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .klab_form_control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }
        
        .klab_form_control:focus {
            border-color: #2575fc;
            outline: none;
        }
        
        .klab_checkbox_group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .klab_checkbox_group input {
            margin-top: 3px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .klab_checkbox_group label {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.4;
        }
        
        .klab_submit_btn {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px 20px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .klab_submit_btn:hover {
            opacity: 0.9;
        }
        
        .klab_submit_btn:active {
            transform: translateY(2px);
            box-shadow: 0 2px 10px rgba(37, 117, 252, 0.4);
        }
        
        .klab_notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px 25px;
            border-radius: 8px;
            color: white;
            font-weight: 500;
             z-index: 100000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .klab_notification.success {
            background: #2ed573;
            opacity: 1;
            visibility: visible !important;
        }
        
        .klab_notification.error {
            background: #ff4757;
            opacity: 1;
            visibility: visible !important;
        }
        
        .klab_field_error {
            color: #ff4757;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        
        /* Стили для демонстрационных кнопок */
        .demo-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .demo-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-main {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
        }
        
        .btn-line {
            background: transparent;
            color: #2575fc;
            border: 2px solid #2575fc;
        }
        
        .demo-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }















            .klab_contact_container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .klab_contact_info {
            flex: 1;
            min-width: 300px;
            padding: 50px 40px;
            background: linear-gradient(135deg, #2c3e50 0%, #4a6580 100%);
            color: white;
            position: relative;
        }
        
        .klab_contact_map {
            flex: 1;
            min-width: 300px;
            background: #eef2f7;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            position: relative;
        }
        
        .klab_contact_title {
            color: #fff;
            font-size: 36px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .klab_contact_title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: #3ca0e7;
            border-radius: 2px;
        }
        
        .klab_contact_description {
            margin-bottom: 30px;
            font-size: 17px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .klab_contact_details {
            margin: 35px 0;
        }
        
        .klab_contact_item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .klab_contact_icon {
            margin-right: 18px;
            width: 26px;
            text-align: center;
            color: #3ca0e7;
            font-size: 20px;
            margin-top: 3px;
        }
        
        .klab_contact_text h4 {
            font-size: 17px;
            margin-bottom: 6px;
            color: #3ca0e7;
            font-weight: 600;
        }
        
        .klab_contact_text p {
            margin-bottom: 0;
            font-size: 17px;
            opacity: 0.95;
        }
        
        .klab_contact_buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .klab_contact_button {
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .klab_contact_button_primary {
            background: #3ca0e7;
            color: white;
            box-shadow: 0 4px 15px rgba(60, 160, 231, 0.3);
        }
        
        .klab_contact_button_primary:hover {
            background: #2a8cd3;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(60, 160, 231, 0.4);
        }
        
        .klab_contact_button_secondary {
            background: #2ecc71;
            color: white;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }
        
        .klab_contact_button_secondary:hover {
            background: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(46, 204, 113, 0.4);
        }
        
        .klab_contact_button_icon {
            margin-right: 10px;
            font-size: 18px;
        }
        
        .klab_contact_map_placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #7a8a9b;
            padding: 20px;
            text-align: center;
        }
        
        .klab_contact_map_icon {
            font-size: 60px;
            margin-bottom: 20px;
            color: #3ca0e7;
            opacity: 0.7;
        }
        
        .klab_contact_map_text {
            font-size: 18px;
            max-width: 300px;
            line-height: 1.5;
        }
        
        @media (max-width: 900px) {
            .klab_contact_container {
                flex-direction: column;
            }
            
            .klab_contact_info {
                padding: 35px 30px;
            }
            
            .klab_contact_map {
                min-height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .klab_contact_title {
                font-size: 30px;
            }
            
            .klab_contact_description {
                font-size: 16px;
            }
            
            .klab_contact_buttons {
                flex-direction: column;
            }
            
            .klab_contact_button {
                width: 100%;
            }
        }
        
        .klab_contact_decoration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            opacity: 0.05;
            font-size: 180px;
            pointer-events: none;
            font-weight: 700;
        }



















  .klab_gallery_one_wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .klab_gallery_one_container {
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            padding: 30px;
            margin: 20px 0;
        }

        .klab_gallery_one_title {
            text-align: center;
            margin-bottom: 25px;
            color: #2c3e50;
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .klab_gallery_one_description {
            text-align: center;
            margin-bottom: 30px;
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .klab_gallery_one_scroll_container {
            overflow-x: auto;
            padding: 15px 5px;
            margin: 0 -5px;
            scrollbar-width: thin;
            scrollbar-color: #3498db #f1f1f1;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        .klab_gallery_one_scroll_container::-webkit-scrollbar {
            height: 8px;
        }

        .klab_gallery_one_scroll_container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .klab_gallery_one_scroll_container::-webkit-scrollbar-thumb {
            background: #3498db;
            border-radius: 10px;
        }

        .klab_gallery_one_grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            padding: 10px;
            width: max-content;
        }

        .klab_gallery_one_item {
            
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            min-width: 0;
        }

        .klab_gallery_one_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .klab_gallery_one_thumb {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            border-radius: 15px;
            transition: transform 0.5s ease, filter 0.3s ease;
        }

        .klab_gallery_one_item:hover .klab_gallery_one_thumb {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .klab_gallery_one_caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px 15px 15px;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .klab_gallery_one_item:hover .klab_gallery_one_caption {
            opacity: 1;
            transform: translateY(0);
        }

        .klab_gallery_one_modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.92);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .klab_gallery_one_modal.active {
            display: flex;
            opacity: 1;
        }

        .klab_gallery_one_modal_content {
            max-width: 90%;
            max-height: 90%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            background: #000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .klab_gallery_one_modal_img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
        }

        .klab_gallery_one_modal_caption {
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 1.2rem;
            background: rgba(0, 0, 0, 0.7);
        }

        .klab_gallery_one_modal_close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .klab_gallery_one_modal_close:hover {
            background: rgba(230, 50, 50, 0.9);
            transform: rotate(90deg);
        }

        .klab_gallery_one_nav {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 10px;
        }

        .klab_gallery_one_nav_button {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .klab_gallery_one_nav_button:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .klab_gallery_one_nav_button:active {
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .klab_gallery_one_item {
                
            }
        }

        @media (max-width: 768px) {
            .klab_gallery_one_thumb {
                height: 200px;
            }
            
            .klab_gallery_one_title {
                font-size: 1.8rem;
            }
            
            .klab_gallery_one_description {
                font-size: 1rem;
            }
            
            .klab_gallery_one_container {
                padding: 20px 15px;
            }
        }

        .klab_gallery_one_hint {
            text-align: center;
            margin-top: 15px;
            color: #7f8c8d;
            font-size: 0.9rem;
            font-style: italic;
        }