/*sidebar*/
/* Dashboard Sidebar Styles */
.hs_dashboard_sidebar {
    background: #e0e5ec;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 10px 10px 30px #c2c8d0, -10px -10px 30px #ffffff;
    margin-bottom: 30px;
    height: fit-content;
}

.hs_dashboard_user {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d9e6;
}

.hs_user_avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e5ec;
    box-shadow: 6px 6px 12px #c2c8d0, -6px -6px 12px #ffffff;
}

.hs_user_info h4 {
    margin: 15px 0 5px;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}

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

.hs_dashboard_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs_dashboard_menu li {
    margin-bottom: 8px;
}

.hs_dashboard_menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
}

.hs_dashboard_menu li a:hover,
.hs_dashboard_menu li.active a {
    background: #d1d9e6;
    color: #333;
    box-shadow: inset 2px 2px 5px #bec4cb, inset -2px -2px 5px #f0f5fa;
}

.hs_dashboard_menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.hs_badge {
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

.hs_logout_btn {
    color: #e74c3c !important;
}

.hs_logout_btn:hover {
    background: #f8d7da !important;
    color: #721c24 !important;
}

/* Dashboard Content Styles */
.hs_dashboard_content {
    background: #e0e5ec;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 10px 10px 30px #c2c8d0, -10px -10px 30px #ffffff;
    min-height: 500px;
}

.hs_dashboard_welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d9e6;
}

.hs_welcome_content h3 {
    margin: 0 0 5px;
    color: #333;
    font-size: 24px;
}

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

.hs_welcome_date p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

.hs_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hs_section_header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.hs_view_all {
    color: #ff7e00;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.hs_view_all:hover {
    text-decoration: underline;
}

/* Form Styles */
.hs_form_group {
    margin-bottom: 20px;
}

.hs_form_group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.hs_form_group input,
.hs_form_group select,
.hs_form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px #c2c8d0, inset -4px -4px 8px #ffffff;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hs_form_group input:focus,
.hs_form_group select:focus,
.hs_form_group textarea:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px #c8ccd1, inset -2px -2px 4px #f0f5fa;
}

.hs_form_group small {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.hs_form_actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Button Styles */
.hs_neumorphic_btn {
    padding: 12px 25px;
    background: #e0e5ec;
    border: none;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 6px 6px 12px #c2c8d0, -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.hs_neumorphic_btn:hover {
    background: #d1d9e6;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

.hs_cancel_btn {
    padding: 12px 25px;
    background: #e0e5ec;
    border: none;
    border-radius: 10px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 6px 6px 12px #c2c8d0, -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hs_cancel_btn:hover {
    background: #d1d9e6;
    color: #333;
    text-decoration: none;
}

/* Alert Styles */
.hs_alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
}

.hs_alert_success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.hs_alert_error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Profile Image Upload */
.hs_profile_image_upload {
    text-align: center;
}

.hs_current_image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e0e5ec;
    box-shadow: 8px 8px 16px #c2c8d0, -8px -8px 16px #ffffff;
    margin-bottom: 20px;
}

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

.hs_upload_btn, .hs_remove_btn {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background: #e0e5ec;
    color: #666;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 4px 4px 8px #c2c8d0, -4px -4px 8px #ffffff;
    transition: all 0.3s ease;
}

.hs_upload_btn:hover, .hs_remove_btn:hover {
    background: #d1d9e6;
    color: #333;
}

.hs_remove_btn {
    background: #f8d7da;
    color: #721c24;
}

.hs_remove_btn:hover {
    background: #f1b0b7;
}

/* Table Styles */
.hs_appointments_table {
    background: #e0e5ec;
    border-radius: 15px;
    padding: 20px;
    box-shadow: inset 4px 4px 8px #c2c8d0, inset -4px -4px 8px #ffffff;
}

.table {
    margin-bottom: 0;
    width: 100%;
}

.table thead th {
    border-bottom: 2px solid #d1d9e6;
    color: #333;
    font-weight: 600;
    padding: 15px;
    font-size: 14px;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #d1d9e6;
    font-size: 14px;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.hs_status_pending {
    background: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.hs_status_confirmed {
    background: #d1ecf1;
    color: #0c5460;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.hs_status_completed {
    background: #d4edda;
    color: #155724;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.hs_status_cancelled {
    background: #f8d7da;
    color: #721c24;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Action Buttons */
.hs_action_buttons {
    display: flex;
    gap: 8px;
}

.hs_view_btn, .hs_cancel_btn_small {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hs_view_btn {
    background: #d1ecf1;
    color: #0c5460;
}

.hs_view_btn:hover {
    background: #bee5eb;
}

.hs_cancel_btn_small {
    background: #f8d7da;
    color: #721c24;
}

.hs_cancel_btn_small:hover {
    background: #f1b0b7;
}

/* No Data State */
.hs_no_data {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.hs_no_data i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #c2c8d0;
}

.hs_no_data h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.hs_no_data p {
    margin-bottom: 25px;
    font-size: 16px;
}

/* Pagination */
.hs_pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination {
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background: #ff7e00;
    border-color: #ff7e00;
    color: white;
}

.pagination .page-link {
    color: #ff7e00;
    border: 1px solid #d1d9e6;
    margin: 0 2px;
    border-radius: 8px;
    padding: 8px 15px;
}

.pagination .page-link:hover {
    background: #e0e5ec;
    border-color: #ff7e00;
    color: #ff7e00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hs_dashboard_welcome {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hs_section_header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hs_form_actions {
        flex-direction: column;
    }
    
    .hs_neumorphic_btn,
    .hs_cancel_btn {
        width: 100%;
        justify-content: center;
    }
    
    .table-responsive {
        font-size: 12px;
    }
    
    .hs_action_buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .hs_view_btn,
    .hs_cancel_btn_small {
        width: 100%;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hs_dashboard_content {
        padding: 20px 15px;
    }
    
    .hs_dashboard_sidebar {
        padding: 20px 15px;
    }
    
    .hs_user_avatar img {
        width: 60px;
        height: 60px;
    }
    
    .hs_user_info h4 {
        font-size: 16px;
    }
}
/*sidebar*/

/*service*/
.ba_service_card_main {
            background: #e0e5ec;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 10px 10px 30px #c2c8d0, -10px -10px 30px #ffffff;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            position: relative;
        }

        .ba_service_card_main:hover {
            transform: translateY(-10px);
            box-shadow: 15px 15px 40px #c2c8d0, -15px -15px 40px #ffffff;
        }

        .ba_service_card_img_wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .ba_service_card_img_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .ba_service_card_main:hover .ba_service_card_img_wrapper img {
            transform: scale(1.1);
        }

        .ba_service_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .ba_service_card_main:hover .ba_service_overlay {
            opacity: 1;
        }

        .ba_service_view_btn {
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ba_service_view_btn:hover {
            background: white;
            color: #ff7e00;
            text-decoration: none;
        }

        .ba_service_card_content {
            padding: 25px;
        }

        .ba_service_title {
            margin: 0 0 15px 0;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        .ba_service_title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .ba_service_title a:hover {
            color: #ff7e00;
            text-decoration: none;
        }

        .ba_service_desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            min-height: 70px;
        }

        .ba_service_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .ba_service_category {
            color: #ff7e00;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ba_service_badge {
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .ba_service_badge.popular {
            background: #fff3cd;
            color: #856404;
        }

        .ba_service_badge.trending {
            background: #d1ecf1;
            color: #0c5460;
        }

        .ba_service_badge.top {
            background: #d4edda;
            color: #155724;
        }

        .ba_service_action {
            text-align: center;
        }

        .ba_service_btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: #ff7e00;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 4px 4px 8px #c2c8d0, -4px -4px 8px #ffffff;
        }

        .ba_service_btn:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
            box-shadow: 6px 6px 12px #c2c8d0, -6px -6px 12px #ffffff;
            color: white;
            text-decoration: none;
        }

        .ba_no_services_found {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            font-size: 18px;
            background: #e0e5ec;
            border-radius: 15px;
            box-shadow: inset 4px 4px 8px #c2c8d0, inset -4px -4px 8px #ffffff;
        }

        /* Category Tabs Styling */
        .hs_shop_tabs_sec_wrapper .nav-pills {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hs_shop_tabs_sec_wrapper .nav-pills li {
            margin: 5px;
        }

        .hs_shop_tabs_sec_wrapper .nav-pills li a {
            padding: 12px 25px;
            background: #e0e5ec;
            color: #666;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 4px 4px 8px #c2c8d0, -4px -4px 8px #ffffff;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .hs_shop_tabs_sec_wrapper .nav-pills li.active a,
        .hs_shop_tabs_sec_wrapper .nav-pills li a:hover {
            background: #ff7e00;
            color: white;
            box-shadow: inset 4px 4px 8px #5a6fd8, inset -4px -4px 8px #ff7e00;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ba_service_card_main {
                margin-bottom: 20px;
            }
            
            .ba_service_card_content {
                padding: 20px;
            }
            
            .ba_service_title {
                font-size: 18px;
            }
            
            .ba_service_meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hs_shop_tabs_sec_wrapper .nav-pills li a {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .ba_service_card_img_wrapper {
                height: 200px;
            }
            
            .ba_service_card_content {
                padding: 15px;
            }
            
            .ba_service_desc {
                min-height: auto;
                font-size: 13px;
            }
        }
        /* Service Cards Styling - Add to custom.css */
.ba_service_card_main {
    background: #e0e5ec;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 30px #c2c8d0, -10px -10px 30px #ffffff;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.ba_service_card_main:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 40px #c2c8d0, -15px -15px 40px #ffffff;
}

.ba_service_card_img_wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.ba_service_card_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.ba_service_card_main:hover .ba_service_card_img_wrapper img {
    transform: scale(1.1);
}

.ba_service_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.ba_service_card_main:hover .ba_service_overlay {
    opacity: 1;
}

.ba_service_view_btn {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba_service_view_btn:hover {
    background: white;
    color: #ff7e00;
    text-decoration: none;
}

.ba_service_card_content {
    padding: 25px;
}

.ba_service_title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.ba_service_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ba_service_title a:hover {
    color: #ff7e00;
    text-decoration: none;
}

.ba_service_desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 70px;
}

.ba_service_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.ba_service_category {
    color: #ff7e00;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ba_service_badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ba_service_badge.popular {
    background: #fff3cd;
    color: #856404;
}

.ba_service_badge.trending {
    background: #d1ecf1;
    color: #0c5460;
}

.ba_service_badge.top {
    background: #d4edda;
    color: #155724;
}

.ba_service_action {
    text-align: center;
}

.ba_service_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #ff7e00;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 8px #c2c8d0, -4px -4px 8px #ffffff;
}

.ba_service_btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px #c2c8d0, -6px -6px 12px #ffffff;
    color: white;
    text-decoration: none;
}

.ba_no_services_found {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
    background: #e0e5ec;
    border-radius: 15px;
    box-shadow: inset 4px 4px 8px #c2c8d0, inset -4px -4px 8px #ffffff;
}

/* Category Tabs Styling */
.hs_shop_tabs_sec_wrapper .nav-pills {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hs_shop_tabs_sec_wrapper .nav-pills li {
    margin: 5px;
}

.hs_shop_tabs_sec_wrapper .nav-pills li a {
    padding: 12px 25px;
    background: #e0e5ec;
    color: #666;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 4px 4px 8px #c2c8d0, -4px -4px 8px #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hs_shop_tabs_sec_wrapper .nav-pills li.active a,
.hs_shop_tabs_sec_wrapper .nav-pills li a:hover {
    background: #ff7e00;
    color: white;
    box-shadow: inset 4px 4px 8px #5a6fd8, inset -4px -4px 8px #ff7e00;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ba_service_card_main {
        margin-bottom: 20px;
    }
    
    .ba_service_card_content {
        padding: 20px;
    }
    
    .ba_service_title {
        font-size: 18px;
    }
    
    .ba_service_meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hs_shop_tabs_sec_wrapper .nav-pills li a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ba_service_card_img_wrapper {
        height: 200px;
    }
    
    .ba_service_card_content {
        padding: 15px;
    }
    
    .ba_service_desc {
        min-height: auto;
        font-size: 13px;
    }
}
/*service*/

 /* Blogs Main Wrapper */
        .ba_blogs_main_wrapper {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_blogs_heading_wrapper {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .ba_blogs_heading_wrapper h2 {
            font-size: 42px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ba_blogs_heading_wrapper p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Blog Cards Grid */
        .ba_blogs_items_wrapper {
            display: flex;
            flex-wrap: wrap;
            padding: 0px;
            justify-content: center;
        }
        
        /* Individual Blog Card */
        .ba_blog_card_main {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .ba_blog_card_main:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }
        
        /* Blog Image Section */
        .ba_blog_card_img_wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .ba_blog_card_img_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ba_blog_card_main:hover .ba_blog_card_img_wrapper img {
            transform: scale(1.1);
        }
        
        /* Blog Overlay */
        .ba_blog_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 126, 0, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .ba_blog_card_main:hover .ba_blog_overlay {
            opacity: 1;
        }
        
        .ba_blog_icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .ba_blog_icon a:hover {
            background: white;
            color: #ff7e00;
            transform: scale(1.1);
        }
        
        /* Blog Date */
        .ba_blog_date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: white;
            padding: 12px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .ba_blog_day {
            display: block;
            font-size: 24px;
            font-weight: 700;
            line-height: 1;
        }
        
        .ba_blog_month {
            display: block;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        /* Blog Content */
        .ba_blog_card_content {
            padding: 25px;
        }
        
        .ba_blog_title {
            margin: 0 0 15px 0;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
        }
        
        .ba_blog_title a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .ba_blog_title a:hover {
            color: #ff7e00;
            text-decoration: none;
        }
        
        .ba_blog_desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 70px;
        }
        
        /* Blog Meta */
        .ba_blog_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .ba_blog_author,
        .ba_blog_read_time {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #888;
        }
        
        .ba_blog_author i,
        .ba_blog_read_time i {
            color: #ff7e00;
        }
        
        /* Blog Action */
        .ba_blog_action {
            text-align: center;
        }
        
        .ba_blog_read_btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .ba_blog_read_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            color: white;
            text-decoration: none;
        }
        
        /* No Blogs State */
        .ba_no_blogs_wrapper {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .ba_no_blogs_icon {
            font-size: 64px;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .ba_no_blogs_wrapper h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .ba_no_blogs_wrapper p {
            color: #666;
            font-size: 16px;
        }
        
        /* Online Experts Section */
        .ba_online_experts_wrapper {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .ba_online_experts_content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .ba_online_experts_content h2 span {
            color: #ff7e00;
        }
        
        .ba_online_experts_content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .ba_experts_stats {
            display: flex;
            gap: 30px;
        }
        
        .ba_stat_item h4 {
            font-size: 32px;
            font-weight: 700;
            color: #ff7e00;
            margin-bottom: 5px;
        }
        
        .ba_stat_item p {
            font-size: 14px;
            opacity: 0.8;
            margin: 0;
        }
        
        /* Expert Cards */
        .ba_expert_card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .ba_expert_card:hover {
            transform: translateY(-5px);
        }
        
        .ba_expert_card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #667eea;
        }
        
        .ba_expert_status {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
        }
        
        .ba_expert_status.online {
            background: #4CAF50;
        }
        
        .ba_expert_status.offline {
            background: #f44336;
        }
        
        .ba_expert_info h5 {
            color: #333;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .ba_expert_info p {
            color: #666;
            font-size: 13px;
            margin: 0;
        }
        
        /* Carousel Styling */
        .ba_experts_carousel .owl-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .ba_experts_carousel .owl-nav button {
            background: rgba(255, 255, 255, 0.2) !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .ba_experts_carousel .owl-nav button:hover {
            background: #ff7e00 !important;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ba_blogs_main_wrapper {
                padding: 60px 0;
            }
            
            .ba_blogs_heading_wrapper h2 {
                font-size: 32px;
            }
            
            .ba_blog_card_img_wrapper {
                height: 200px;
            }
            
            .ba_blog_card_content {
                padding: 20px;
            }
            
            .ba_blog_meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .ba_experts_stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .ba_online_experts_content h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .ba_blogs_items_wrapper {
                gap: 20px;
            }
            
            .ba_blog_card_img_wrapper {
                height: 180px;
            }
            
            .ba_blog_desc {
                min-height: auto;
                font-size: 13px;
            }
            
            .ba_blog_read_btn {
                width: 100%;
                justify-content: center;
            }
        }


/*----------------------------------------*/
 /* Stotram Filter Section */
        .ba_stotram_filter_main_wrapper {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_stotram_filter_heading_wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .ba_stotram_filter_heading_wrapper h2 {
            font-size: 42px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ba_stotram_filter_heading_wrapper p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .ba_stotram_filter_wrapper {
            text-align: center;
        }
        
        .ba_stotram_filter_wrapper ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .ba_filter_btn {
            padding: 12px 25px;
            background: #ffffff;
            color: #666;
            border: 2px solid transparent;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .ba_filter_btn.active,
        .ba_filter_btn:hover {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }
        
        /* Stotram Search Section */
        .ba_stotram_search_main_wrapper {
            padding: 40px 0;
            background: #ffffff;
        }
        
        .ba_stotram_search_wrapper {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .ba_stotram_search_wrapper input {
            width: 100%;
            padding: 15px 60px 15px 25px;
            border: 2px solid #e0e5ec;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            box-shadow: inset 4px 4px 8px #e0e5ec, inset -4px -4px 8px #ffffff;
        }
        
        .ba_stotram_search_wrapper input:focus {
            border-color: #667eea;
            outline: none;
            box-shadow: inset 2px 2px 4px #e0e5ec, inset -2px -2px 4px #ffffff, 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .ba_search_btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .ba_search_btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        
        /* Stotram Items Section */
        .ba_stotram_main_wrapper {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_stotram_items_wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        /* Stotram Card */
        .ba_stotram_card_main {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .ba_stotram_card_main:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }
        
        /* Stotram Image */
        .ba_stotram_img_wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .ba_stotram_img_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ba_stotram_card_main:hover .ba_stotram_img_wrapper img {
            transform: scale(1.1);
        }
        
        /* Stotram Overlay */
        .ba_stotram_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 126, 0, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .ba_stotram_card_main:hover .ba_stotram_overlay {
            opacity: 1;
        }
        
        .ba_stotram_icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid white;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .ba_stotram_icon a:hover {
            background: white;
            color: #ff7e00;
            transform: scale(1.1);
        }
        
        /* Stotram Duration */
        .ba_stotram_duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0,0,0,0.8);
            color: #ffffff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Stotram Content */
        .ba_stotram_card_content {
            padding: 25px;
        }
        
        .ba_stotram_title {
            margin: 0 0 15px 0;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            color: #333;
        }
        
        .ba_stotram_desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 70px;
        }
        
        /* Stotram Meta */
        .ba_stotram_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .ba_stotram_views,
        .ba_stotram_rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #888;
        }
        
        .ba_stotram_views i,
        .ba_stotram_rating i {
            color: #ff7e00;
        }
        
        /* Stotram Benefits */
        .ba_stotram_benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .ba_benefit_tag {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
        }
        
        /* No Stotrams State */
        .ba_no_stotrams_wrapper {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .ba_no_stotrams_icon {
            font-size: 64px;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .ba_no_stotrams_wrapper h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .ba_no_stotrams_wrapper p {
            color: #666;
            font-size: 16px;
        }
        
        /* Stotram Player Modal */
        .ba_stotram_player_modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }
        
        .ba_stotram_player_modal_content {
            position: relative;
            background-color: #fff;
            margin: 5% auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .ba_stotram_player_close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: #333;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s ease;
        }
        
        .ba_stotram_player_close:hover {
            color: #ff7e00;
            transform: scale(1.1);
        }
        
        .ba_stotram_player_header {
            padding: 25px;
            border-bottom: 1px solid #eee;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px 20px 0 0;
        }
        
        .ba_stotram_player_header h3 {
            margin: 0 0 15px 0;
            color: #333;
            font-size: 28px;
            font-weight: 700;
        }
        
        .ba_stotram_player_meta {
            display: flex;
            gap: 25px;
            font-size: 14px;
            color: #666;
        }
        
        .ba_stotram_player_meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .ba_stotram_player_meta i {
            color: #ff7e00;
        }
        
        .ba_stotram_player_main {
            padding: 25px;
        }
        
        /* Audio Player */
        .ba_stotram_audio_player {
            margin-bottom: 30px;
            text-align: center;
        }
        
        #ba_stotram_audio {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        
        .ba_stotram_player_controls {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .ba_stotram_control_btn {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .ba_stotram_control_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        
        /* Lyrics Section */
        .ba_stotram_lyrics_section {
            margin-bottom: 30px;
        }
        
        .ba_stotram_lyrics_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ba_stotram_lyrics_header h4 {
            margin: 0;
            color: #333;
            font-size: 20px;
            font-weight: 600;
        }
        
        .ba_stotram_language_toggle {
            display: flex;
            gap: 10px;
        }
        
        .ba_lang_btn {
            padding: 8px 16px;
            border: 2px solid #e0e5ec;
            background: #fff;
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .ba_lang_btn.active {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            color: #fff;
            border-color: transparent;
        }
        
        .ba_stotram_lyrics_content {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            min-height: 200px;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: inset 4px 4px 8px #e0e5ec, inset -4px -4px 8px #ffffff;
        }
        
        .ba_lyrics_text {
            display: none;
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            white-space: pre-line;
        }
        
        .ba_lyrics_text.active {
            display: block;
        }
        
        /* Benefits Section */
        .ba_stotram_benefits_section h4 {
            margin: 0 0 20px 0;
            color: #333;
            font-size: 20px;
            font-weight: 600;
        }
        
        .ba_stotram_benefits_list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .ba_benefit_item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .ba_benefit_item i {
            color: #ff7e00;
            font-size: 18px;
        }
        
        .ba_benefit_item span {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        /* Navigation Arrows */
        .ba_stotram_player_prev,
        .ba_stotram_player_next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: 50px;
            height: 50px;
            padding: 16px;
            margin-top: -25px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 50%;
            user-select: none;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .ba_stotram_player_next {
            right: 20px;
        }
        
        .ba_stotram_player_prev {
            left: 20px;
        }
        
        .ba_stotram_player_prev:hover,
        .ba_stotram_player_next:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ba_stotram_filter_wrapper ul {
                flex-direction: column;
                align-items: center;
            }
            
            .ba_filter_btn {
                width: 200px;
            }
            
            .ba_stotram_img_wrapper {
                height: 200px;
            }
            
            .ba_stotram_player_modal_content {
                width: 95%;
                margin: 10% auto;
            }
            
            .ba_stotram_benefits_list {
                grid-template-columns: 1fr;
            }
            
            .ba_stotram_lyrics_header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .ba_stotram_player_prev,
            .ba_stotram_player_next {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .ba_stotram_items_wrapper {
                gap: 20px;
            }
            
            .ba_stotram_img_wrapper {
                height: 180px;
            }
            
            .ba_stotram_desc {
                min-height: auto;
                font-size: 13px;
            }
            
            .ba_stotram_card_content {
                padding: 20px;
            }
        }
/*=---------------------------------------*/

/* Video Gallery Heading Section */
        .ba_video_gallery_heading_main_wrapper {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_video_gallery_heading_wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .ba_video_gallery_heading_wrapper h2 {
            font-size: 42px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ba_video_gallery_heading_wrapper p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Video Gallery Items Section */
        .ba_video_gallery_main_wrapper {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_video_gallery_items_wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        /* Video Card */
        .ba_video_card_main {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .ba_video_card_main:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }
        
        /* Video Image */
        .ba_video_img_wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .ba_video_img_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ba_video_card_main:hover .ba_video_img_wrapper img {
            transform: scale(1.1);
        }
        
        /* Video Overlay */
        .ba_video_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 126, 0, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .ba_video_card_main:hover .ba_video_overlay {
            opacity: 1;
        }
        
        .ba_video_icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid white;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            transition: all 0.3s ease;
        }
        
        .ba_video_icon a:hover {
            background: white;
            color: #ff7e00;
            transform: scale(1.1);
        }
        
        /* Video Duration */
        .ba_video_duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0,0,0,0.8);
            color: #ffffff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Video Content */
        .ba_video_card_content {
            padding: 25px;
        }
        
        .ba_video_title {
            margin: 0 0 15px 0;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            color: #333;
        }
        
        .ba_video_desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 70px;
        }
        
        /* Video Meta */
        .ba_video_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .ba_video_views,
        .ba_video_likes {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #888;
        }
        
        .ba_video_views i,
        .ba_video_likes i {
            color: #ff7e00;
        }
        
        /* No Videos State */
        .ba_no_videos_wrapper {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .ba_no_videos_icon {
            font-size: 64px;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .ba_no_videos_wrapper h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .ba_no_videos_wrapper p {
            color: #666;
            font-size: 16px;
        }
        
        /* Video Lightbox Modal */
        .ba_video_lightbox_modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.95);
        }
        
        .ba_video_lightbox_modal_content {
            position: relative;
            margin: 5% auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: #fff;
        }
        
        .ba_video_container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
            border-radius: 20px 20px 0 0;
        }
        
        .ba_video_container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .ba_video_lightbox_close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ba_video_lightbox_close:hover {
            color: #ff7e00;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .ba_video_lightbox_caption {
            padding: 25px;
            background: #fff;
            border-radius: 0 0 20px 20px;
        }
        
        .ba_video_lightbox_caption h3 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #333;
            font-weight: 700;
        }
        
        .ba_video_lightbox_caption p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .ba_video_lightbox_meta {
            display: flex;
            gap: 25px;
            font-size: 14px;
            color: #888;
        }
        
        .ba_video_lightbox_meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .ba_video_lightbox_meta i {
            color: #ff7e00;
        }
        
        /* Navigation Arrows */
        .ba_video_lightbox_prev,
        .ba_video_lightbox_next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: 60px;
            height: 60px;
            padding: 16px;
            margin-top: -30px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 50%;
            user-select: none;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .ba_video_lightbox_next {
            right: 20px;
        }
        
        .ba_video_lightbox_prev {
            left: 20px;
        }
        
        .ba_video_lightbox_prev:hover,
        .ba_video_lightbox_next:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        /* Video Controls */
        .ba_video_lightbox_controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            background: rgba(0,0,0,0.7);
            padding: 15px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .ba_video_control_btn {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 12px 15px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ba_video_control_btn:hover {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            border-color: transparent;
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ba_video_gallery_heading_wrapper h2 {
                font-size: 32px;
            }
            
            .ba_video_img_wrapper {
                height: 200px;
            }
            
            .ba_video_lightbox_modal_content {
                width: 95%;
                margin: 10% auto;
            }
            
            .ba_video_lightbox_controls {
                flex-wrap: wrap;
                justify-content: center;
                width: 90%;
            }
            
            .ba_video_control_btn {
                width: 45px;
                height: 45px;
                font-size: 14px;
            }
            
            .ba_video_lightbox_prev,
            .ba_video_lightbox_next {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .ba_video_gallery_items_wrapper {
                gap: 20px;
            }
            
            .ba_video_img_wrapper {
                height: 180px;
            }
            
            .ba_video_desc {
                min-height: auto;
                font-size: 13px;
            }
            
            .ba_video_card_content {
                padding: 20px;
            }
            
            .ba_video_lightbox_caption {
                padding: 20px;
            }
            
            .ba_video_lightbox_caption h3 {
                font-size: 20px;
            }
            
            .ba_video_lightbox_meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        
        /*----------------------------*/
            /* Image Gallery Heading Section */
        .ba_image_gallery_heading_main_wrapper {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_image_gallery_heading_wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .ba_image_gallery_heading_wrapper h2 {
            font-size: 42px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ba_image_gallery_heading_wrapper p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Image Gallery Items Section */
        .ba_image_gallery_main_wrapper {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .ba_image_gallery_items_wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        /* Image Card */
        .ba_image_card_main {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .ba_image_card_main:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }
        
        /* Image Image */
        .ba_image_img_wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .ba_image_img_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ba_image_card_main:hover .ba_image_img_wrapper img {
            transform: scale(1.1);
        }
        
        /* Image Overlay */
        .ba_image_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 126, 0, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .ba_image_card_main:hover .ba_image_overlay {
            opacity: 1;
        }
        
        .ba_image_icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid white;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            transition: all 0.3s ease;
        }
        
        .ba_image_icon a:hover {
            background: white;
            color: #ff7e00;
            transform: scale(1.1);
        }
        
        /* Image Type */
        .ba_image_type {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0,0,0,0.8);
            color: #ffffff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Image Content */
        .ba_image_card_content {
            padding: 25px;
        }
        
        .ba_image_title {
            margin: 0 0 15px 0;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            color: #333;
        }
        
        .ba_image_desc {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 70px;
        }
        
        /* Image Meta */
        .ba_image_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .ba_image_views,
        .ba_image_likes {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #888;
        }
        
        .ba_image_views i,
        .ba_image_likes i {
            color: #ff7e00;
        }
        
        /* No Images State */
        .ba_no_images_wrapper {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .ba_no_images_icon {
            font-size: 64px;
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .ba_no_images_wrapper h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .ba_no_images_wrapper p {
            color: #666;
            font-size: 16px;
        }
        
        /* Image Lightbox Modal */
        .ba_image_lightbox_modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.95);
        }
        
        .ba_image_lightbox_modal_content {
            position: relative;
            margin: 5% auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: #fff;
            overflow: hidden;
        }
        
        .ba_image_container {
            position: relative;
            background: #000;
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            max-height: 70vh;
        }
        
        .ba_image_container img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .ba_image_lightbox_close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ba_image_lightbox_close:hover {
            color: #ff7e00;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .ba_image_lightbox_caption {
            padding: 25px;
            background: #fff;
            border-radius: 0 0 20px 20px;
        }
        
        .ba_image_lightbox_caption h3 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #333;
            font-weight: 700;
        }
        
        .ba_image_lightbox_caption p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .ba_image_lightbox_meta {
            display: flex;
            gap: 25px;
            font-size: 14px;
            color: #888;
        }
        
        .ba_image_lightbox_meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .ba_image_lightbox_meta i {
            color: #ff7e00;
        }
        
        /* Navigation Arrows */
        .ba_image_lightbox_prev,
        .ba_image_lightbox_next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: 60px;
            height: 60px;
            padding: 16px;
            margin-top: -30px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 50%;
            user-select: none;
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .ba_image_lightbox_next {
            right: 20px;
        }
        
        .ba_image_lightbox_prev {
            left: 20px;
        }
        
        .ba_image_lightbox_prev:hover,
        .ba_image_lightbox_next:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        /* Image Controls */
        .ba_image_lightbox_controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            background: rgba(0,0,0,0.7);
            padding: 15px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .ba_image_control_btn {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 12px 15px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ba_image_control_btn:hover {
            background: linear-gradient(135deg, #ff7e00 0%, #667eea 100%);
            border-color: transparent;
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ba_image_gallery_heading_wrapper h2 {
                font-size: 32px;
            }
            
            .ba_image_img_wrapper {
                height: 200px;
            }
            
            .ba_image_lightbox_modal_content {
                width: 95%;
                margin: 10% auto;
            }
            
            .ba_image_lightbox_controls {
                flex-wrap: wrap;
                justify-content: center;
                width: 90%;
            }
            
            .ba_image_control_btn {
                width: 45px;
                height: 45px;
                font-size: 14px;
            }
            
            .ba_image_lightbox_prev,
            .ba_image_lightbox_next {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .ba_image_gallery_items_wrapper {
                gap: 20px;
            }
            
            .ba_image_img_wrapper {
                height: 180px;
            }
            
            .ba_image_desc {
                min-height: auto;
                font-size: 13px;
            }
            
            .ba_image_card_content {
                padding: 20px;
            }
            
            .ba_image_lightbox_caption {
                padding: 20px;
            }
            
            .ba_image_lightbox_caption h3 {
                font-size: 20px;
            }
            
            .ba_image_lightbox_meta {
                flex-direction: column;
                gap: 10px;
            }
        }