/home/lnzliplg/www/wp-content/themes/lawyer-hub/tp-body-width-layout.php
<?php

	$lawyer_hub_tp_theme_css = "";
	
//body layout//
$lawyer_hub_theme_lay = get_theme_mod( 'lawyer_hub_tp_body_layout_settings','Full');
if($lawyer_hub_theme_lay == 'Container'){
$lawyer_hub_tp_theme_css .='body{';
	$lawyer_hub_tp_theme_css .='max-width: 1140px; width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto;';
$lawyer_hub_tp_theme_css .='}';

$lawyer_hub_tp_theme_css .='@media screen and (min-width:1367px){';
        $lawyer_hub_tp_theme_css .='body{';
            $lawyer_hub_tp_theme_css .='max-width: 1320px;';
        $lawyer_hub_tp_theme_css .='} }';

$lawyer_hub_tp_theme_css .='.page-template-front-page .menubar{';
	$lawyer_hub_tp_theme_css .='position: static;';
$lawyer_hub_tp_theme_css .='}';
$lawyer_hub_tp_theme_css .='@media screen and (max-width:575px){';
$lawyer_hub_tp_theme_css .='body{';
	$lawyer_hub_tp_theme_css .='max-width: 100%; padding-right:0px; padding-left: 0px';
$lawyer_hub_tp_theme_css .='} }';
$lawyer_hub_tp_theme_css .='.scrolled{';
	$lawyer_hub_tp_theme_css .='width: auto; left:0; right:0;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_theme_lay == 'Container Fluid'){
$lawyer_hub_tp_theme_css .='body{';
	$lawyer_hub_tp_theme_css .='width: 100%;padding-right: 15px;padding-left: 15px;margin-right: auto;margin-left: auto;';
$lawyer_hub_tp_theme_css .='}';
$lawyer_hub_tp_theme_css .='.page-template-front-page .menubar{';
	$lawyer_hub_tp_theme_css .='width: 99%';
$lawyer_hub_tp_theme_css .='}';
$lawyer_hub_tp_theme_css .='.scrolled{';
$lawyer_hub_tp_theme_css .='width: auto; left:0; right:0;';
	$lawyer_hub_tp_theme_css .='}';
$lawyer_hub_tp_theme_css .='.scrolled{';
	$lawyer_hub_tp_theme_css .='width: auto; left:0; right:0;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_theme_lay == 'Full'){
$lawyer_hub_tp_theme_css .='body{';
	$lawyer_hub_tp_theme_css .='max-width: 100%;';
$lawyer_hub_tp_theme_css .='}';
}

//scroll-top-alignmemt
$lawyer_hub_scroll_position = get_theme_mod( 'lawyer_hub_scroll_top_position','Right');
if($lawyer_hub_scroll_position == 'Right'){
$lawyer_hub_tp_theme_css .='#return-to-top{';
    $lawyer_hub_tp_theme_css .='right: 20px;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_scroll_position == 'Left'){
$lawyer_hub_tp_theme_css .='#return-to-top{';
    $lawyer_hub_tp_theme_css .='left: 20px;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_scroll_position == 'Center'){
$lawyer_hub_tp_theme_css .='#return-to-top{';
    $lawyer_hub_tp_theme_css .='right: 50%;left: 50%;';
$lawyer_hub_tp_theme_css .='}';
}

//Social icon Font size
$lawyer_hub_social_icon_fontsize = get_theme_mod('lawyer_hub_social_icon_fontsize');
$lawyer_hub_tp_theme_css .='.media-links a i{';
$lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_social_icon_fontsize).'px;';
$lawyer_hub_tp_theme_css .='}';


// site title  font size option
$lawyer_hub_site_title_font_size = get_theme_mod('lawyer_hub_site_title_font_size', 20);{
	$lawyer_hub_tp_theme_css .='.logo h1 a, .logo p a{';
$lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_site_title_font_size).'px';
	$lawyer_hub_tp_theme_css .='}';
}

// site tagline font size option
$lawyer_hub_site_tagline_font_size = get_theme_mod('lawyer_hub_site_tagline_font_size', 15);{
$lawyer_hub_tp_theme_css .='.logo p{';
$lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_site_tagline_font_size).'px;';
$lawyer_hub_tp_theme_css .='}';
}

// related post
$lawyer_hub_related_post_mob = get_theme_mod('lawyer_hub_related_post_mob', true);
$lawyer_hub_related_post = get_theme_mod('lawyer_hub_remove_related_post', true);
$lawyer_hub_tp_theme_css .= '.related-post-block {';
if ($lawyer_hub_related_post == false) {
    $lawyer_hub_tp_theme_css .= 'display: none;';
}
$lawyer_hub_tp_theme_css .= '}';
$lawyer_hub_tp_theme_css .= '@media screen and (max-width: 575px) {';
if ($lawyer_hub_related_post == false || $lawyer_hub_related_post_mob == false) {
    $lawyer_hub_tp_theme_css .= '.related-post-block { display: none; }';
}
$lawyer_hub_tp_theme_css .= '}';

// slider btn
$lawyer_hub_slider_buttom_mob = get_theme_mod('lawyer_hub_slider_buttom_mob', true);
$lawyer_hub_slider_button = get_theme_mod('lawyer_hub_slider_button', true);
$lawyer_hub_tp_theme_css .= '#slider .more-btn {';
if ($lawyer_hub_slider_button == false) {
    $lawyer_hub_tp_theme_css .= 'display: none;';
}
$lawyer_hub_tp_theme_css .= '}';
$lawyer_hub_tp_theme_css .= '@media screen and (max-width: 575px) {';
if ($lawyer_hub_slider_button == false || $lawyer_hub_slider_buttom_mob == false) {
    $lawyer_hub_tp_theme_css .= '#slider .more-btn { display: none; }';
}
$lawyer_hub_tp_theme_css .= '}';

//return to header mobile				
$lawyer_hub_return_to_header_mob = get_theme_mod('lawyer_hub_return_to_header_mob', true);
$lawyer_hub_return_to_header = get_theme_mod('lawyer_hub_return_to_header', true);
$lawyer_hub_tp_theme_css .= '.return-to-header{';
if ($lawyer_hub_return_to_header == false) {
    $lawyer_hub_tp_theme_css .= 'display: none;';
}
$lawyer_hub_tp_theme_css .= '}';
$lawyer_hub_tp_theme_css .= '@media screen and (max-width: 575px) {';
if ($lawyer_hub_return_to_header == false || $lawyer_hub_return_to_header_mob == false) {
    $lawyer_hub_tp_theme_css .= '.return-to-header{ display: none; }';
}
$lawyer_hub_tp_theme_css .= '}';

//blog description              
$lawyer_hub_mobile_blog_description = get_theme_mod('lawyer_hub_mobile_blog_description', true);
$lawyer_hub_tp_theme_css .= '@media screen and (max-width: 575px) {';
if ($lawyer_hub_mobile_blog_description == false) {
    $lawyer_hub_tp_theme_css .= '.blog-description{ display: none; }';
}
$lawyer_hub_tp_theme_css .= '}';

//footer bg image
$lawyer_hub_footer_widget_image = get_theme_mod('lawyer_hub_footer_widget_image');
if($lawyer_hub_footer_widget_image != false){
$lawyer_hub_tp_theme_css .='#footer{';
	$lawyer_hub_tp_theme_css .='background: url('.esc_attr($lawyer_hub_footer_widget_image).');';
$lawyer_hub_tp_theme_css .='}';
}


//related products
$lawyer_hub_related_product = get_theme_mod('lawyer_hub_related_product',true);
if($lawyer_hub_related_product == false){
$lawyer_hub_tp_theme_css .='.related.products{';
	$lawyer_hub_tp_theme_css .='display: none;';
$lawyer_hub_tp_theme_css .='}';
}


//menu font size
$lawyer_hub_menu_font_size = get_theme_mod('lawyer_hub_menu_font_size', '');{
$lawyer_hub_tp_theme_css .='.main-navigation a,.main-navigation li.page_item_has_children:after, .main-navigation li.menu-item-has-children:after{';
	$lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_menu_font_size).'px;';
$lawyer_hub_tp_theme_css .='}';
}

// menu text transform
$lawyer_hub_menu_text_tranform = get_theme_mod( 'lawyer_hub_menu_text_tranform','');
if($lawyer_hub_menu_text_tranform == 'Uppercase'){
$lawyer_hub_tp_theme_css .='.main-navigation a {';
	$lawyer_hub_tp_theme_css .='text-transform: uppercase;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_text_tranform == 'Lowercase'){
$lawyer_hub_tp_theme_css .='.main-navigation a {';
	$lawyer_hub_tp_theme_css .='text-transform: lowercase;';
$lawyer_hub_tp_theme_css .='}';
}
else if($lawyer_hub_menu_text_tranform == 'Capitalize'){
$lawyer_hub_tp_theme_css .='.main-navigation a {';
	$lawyer_hub_tp_theme_css .='text-transform: capitalize;';
$lawyer_hub_tp_theme_css .='}';
}

// Sale Tag Position (Fixed variable name conflict)
$lawyer_hub_sale_position = get_theme_mod( 'lawyer_hub_sale_tag_position', 'right' );
if ( $lawyer_hub_sale_position == 'right' ) {
    $lawyer_hub_tp_theme_css .= '.woocommerce ul.products li.product .onsale {';
    $lawyer_hub_tp_theme_css .= 'right: 25px !important; left: auto !important;';
    $lawyer_hub_tp_theme_css .= '}';
} elseif ( $lawyer_hub_sale_position == 'left' ) {
    $lawyer_hub_tp_theme_css .= '.woocommerce ul.products li.product .onsale {';
    $lawyer_hub_tp_theme_css .= 'left: 25px !important; right:auto !important;';
    $lawyer_hub_tp_theme_css .= '}';
}

$lawyer_hub_woocommerce_sale_font_size = get_theme_mod('lawyer_hub_woocommerce_sale_font_size');
if($lawyer_hub_woocommerce_sale_font_size != false){
    $lawyer_hub_tp_theme_css .='.woocommerce ul.products li.product .onsale, .woocommerce span.onsale{';
        $lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_woocommerce_sale_font_size).'px;';
    $lawyer_hub_tp_theme_css .='}';
}

$lawyer_hub_woocommerce_sale_padding_top_bottom = get_theme_mod('lawyer_hub_woocommerce_sale_padding_top_bottom');
if($lawyer_hub_woocommerce_sale_padding_top_bottom != false){
    $lawyer_hub_tp_theme_css .='.woocommerce ul.products li.product .onsale, .woocommerce span.onsale{';
        $lawyer_hub_tp_theme_css .='padding-top: '.esc_attr($lawyer_hub_woocommerce_sale_padding_top_bottom).'px; padding-bottom: '.esc_attr($lawyer_hub_woocommerce_sale_padding_top_bottom).'px;';
    $lawyer_hub_tp_theme_css .='}';
}

$lawyer_hub_woocommerce_sale_padding_left_right = get_theme_mod('lawyer_hub_woocommerce_sale_padding_left_right');
if($lawyer_hub_woocommerce_sale_padding_left_right != false){
    $lawyer_hub_tp_theme_css .='.woocommerce ul.products li.product .onsale, .woocommerce span.onsale{';
        $lawyer_hub_tp_theme_css .='padding-left: '.esc_attr($lawyer_hub_woocommerce_sale_padding_left_right).'px !Important; padding-right: '.esc_attr($lawyer_hub_woocommerce_sale_padding_left_right).'px !important;';
    $lawyer_hub_tp_theme_css .='}';
}

$lawyer_hub_woocommerce_sale_border_radius = get_theme_mod('lawyer_hub_woocommerce_sale_border_radius', 100);
if($lawyer_hub_woocommerce_sale_border_radius != false){
    $lawyer_hub_tp_theme_css .='.woocommerce ul.products li.product .onsale, .woocommerce span.onsale{';
        $lawyer_hub_tp_theme_css .='border-radius: '.esc_attr($lawyer_hub_woocommerce_sale_border_radius).'% !important;';
    $lawyer_hub_tp_theme_css .='}';
}

//Font Weight
$lawyer_hub_menu_font_weight = get_theme_mod( 'lawyer_hub_menu_font_weight','');
if($lawyer_hub_menu_font_weight == '100'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 100;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '200'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 200;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '300'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 300;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '400'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 400;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '500'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 500;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '600'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 600;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '700'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 700;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '800'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 800;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_menu_font_weight == '900'){
$lawyer_hub_tp_theme_css .='.main-navigation a{';
    $lawyer_hub_tp_theme_css .='font-weight: 900;';
$lawyer_hub_tp_theme_css .='}';
}

//sale position
$lawyer_hub_slider_arrows = get_theme_mod( 'lawyer_hub_slider_arrows','true');
if($lawyer_hub_slider_arrows == false){
$lawyer_hub_tp_theme_css .='.page-template-front-page .header-box{';
    $lawyer_hub_tp_theme_css .='position:static; background: #222121;';
$lawyer_hub_tp_theme_css .='}';
}

/*------------- Blog Page------------------*/
$lawyer_hub_post_image_round = get_theme_mod('lawyer_hub_post_image_round', 0);
if($lawyer_hub_post_image_round != false){
    $lawyer_hub_tp_theme_css .='.blog .box-image img{';
        $lawyer_hub_tp_theme_css .='border-radius: '.esc_attr($lawyer_hub_post_image_round).'px;';
    $lawyer_hub_tp_theme_css .='}';
}

$lawyer_hub_post_image_width = get_theme_mod('lawyer_hub_post_image_width', '');
if($lawyer_hub_post_image_width != false){
    $lawyer_hub_tp_theme_css .='.blog .box-image img{';
        $lawyer_hub_tp_theme_css .='Width: '.esc_attr($lawyer_hub_post_image_width).'px;';
    $lawyer_hub_tp_theme_css .='}';
}

$lawyer_hub_post_image_length = get_theme_mod('lawyer_hub_post_image_length', '');
if($lawyer_hub_post_image_length != false){
    $lawyer_hub_tp_theme_css .='.blog .box-image img{';
        $lawyer_hub_tp_theme_css .='height: '.esc_attr($lawyer_hub_post_image_length).'px;';
    $lawyer_hub_tp_theme_css .='}';
}

// footer widget title font size
    $lawyer_hub_footer_widget_title_font_size = get_theme_mod('lawyer_hub_footer_widget_title_font_size', '');{
    $lawyer_hub_tp_theme_css .='#footer h3{';
        $lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_footer_widget_title_font_size).'px;';
    $lawyer_hub_tp_theme_css .='}';
    }

    // Copyright text font size
    $lawyer_hub_footer_copyright_font_size = get_theme_mod('lawyer_hub_footer_copyright_font_size', '');{
    $lawyer_hub_tp_theme_css .='#footer .site-info p{';
        $lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_footer_copyright_font_size).'px;';
    $lawyer_hub_tp_theme_css .='}';
    }

    // copyright padding
    $lawyer_hub_footer_copyright_top_bottom_padding = get_theme_mod('lawyer_hub_footer_copyright_top_bottom_padding', '');
    if ($lawyer_hub_footer_copyright_top_bottom_padding !== '') { 
        $lawyer_hub_tp_theme_css .= '.site-info {';
        $lawyer_hub_tp_theme_css .= 'padding-top: ' . esc_attr($lawyer_hub_footer_copyright_top_bottom_padding) . 'px;';
        $lawyer_hub_tp_theme_css .= 'padding-bottom: ' . esc_attr($lawyer_hub_footer_copyright_top_bottom_padding) . 'px;';
        $lawyer_hub_tp_theme_css .= '}';
    }

    // copyright position
    $lawyer_hub_copyright_text_position = get_theme_mod( 'lawyer_hub_copyright_text_position','Center');
    if($lawyer_hub_copyright_text_position == 'Center'){
    $lawyer_hub_tp_theme_css .='#footer .site-info p{';
    $lawyer_hub_tp_theme_css .='text-align:center;';
    $lawyer_hub_tp_theme_css .='}';
    }else if($lawyer_hub_copyright_text_position == 'Left'){
    $lawyer_hub_tp_theme_css .='#footer .site-info p{';
    $lawyer_hub_tp_theme_css .='text-align:left;';
    $lawyer_hub_tp_theme_css .='}';
    }else if($lawyer_hub_copyright_text_position == 'Right'){
    $lawyer_hub_tp_theme_css .='#footer .site-info p{';
    $lawyer_hub_tp_theme_css .='text-align:right;';
    $lawyer_hub_tp_theme_css .='}';
}

// Header Image title font size
$lawyer_hub_header_image_title_font_size = get_theme_mod('lawyer_hub_header_image_title_font_size', '32');{
$lawyer_hub_tp_theme_css .='.box-text h2{';
    $lawyer_hub_tp_theme_css .='font-size: '.esc_attr($lawyer_hub_header_image_title_font_size).'px;';
$lawyer_hub_tp_theme_css .='}';
}


/*--------------------------- banner image Opacity -------------------*/
    $lawyer_hub_theme_lay = get_theme_mod( 'lawyer_hub_header_banner_opacity_color','0.9');
        if($lawyer_hub_theme_lay == '0'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.1'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.1';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.2'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.2';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.3'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.3';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.4'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.4';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.5'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.5';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.6'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.6';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.7'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.7';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.8'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.8';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '0.9'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:0.9';
            $lawyer_hub_tp_theme_css .='}';
        }else if($lawyer_hub_theme_lay == '1'){
            $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
                $lawyer_hub_tp_theme_css .='opacity:1';
            $lawyer_hub_tp_theme_css .='}';
        }

    $lawyer_hub_header_banner_image_overlay = get_theme_mod('lawyer_hub_header_banner_image_overlay', true);
    if($lawyer_hub_header_banner_image_overlay == false){
        $lawyer_hub_tp_theme_css .='.single-page-img, .featured-image{';
            $lawyer_hub_tp_theme_css .='opacity:1;';
        $lawyer_hub_tp_theme_css .='}';
    }

    $lawyer_hub_header_banner_image_ooverlay_color = get_theme_mod('lawyer_hub_header_banner_image_ooverlay_color', true);
    if($lawyer_hub_header_banner_image_ooverlay_color != false){
        $lawyer_hub_tp_theme_css .='.box-image-page{';
            $lawyer_hub_tp_theme_css .='background-color: '.esc_attr($lawyer_hub_header_banner_image_ooverlay_color).';';
        $lawyer_hub_tp_theme_css .='}';
    }

    /*------------------ Slider CSS -------------------*/
    $lawyer_hub_slider_opacity_setting = get_theme_mod('lawyer_hub_slider_opacity_setting', true);
    $lawyer_hub_image_opacity_color    = get_theme_mod('lawyer_hub_image_opacity_color', '');
    $lawyer_hub_slider_opacity         = get_theme_mod('lawyer_hub_slider_opacity', '1');

    if ($lawyer_hub_slider_opacity_setting) {
        // Apply opacity value to slider image
        if ($lawyer_hub_slider_opacity !== '') {
            $lawyer_hub_tp_theme_css .= '#slider img {';
            $lawyer_hub_tp_theme_css .= 'opacity: ' . esc_attr($lawyer_hub_slider_opacity) . ';';
            $lawyer_hub_tp_theme_css .= '}';
        }

        // Apply background color to slider if defined
        if ($lawyer_hub_image_opacity_color !== '') {
            $lawyer_hub_tp_theme_css .= '#slider {';
            $lawyer_hub_tp_theme_css .= 'background-color: ' . esc_attr($lawyer_hub_image_opacity_color) . ';';
            $lawyer_hub_tp_theme_css .= '}';
        }
    } else {
        // If setting is disabled, force full opacity
        $lawyer_hub_tp_theme_css .= '#slider img {';
        $lawyer_hub_tp_theme_css .= 'opacity: 1;';
        $lawyer_hub_tp_theme_css .= '}';
    }

    // Slider Height
    $lawyer_hub_slider_img_height      = get_theme_mod('lawyer_hub_slider_img_height');
    $lawyer_hub_slider_img_height_resp = get_theme_mod('lawyer_hub_slider_img_height_responsive');

    // Desktop height
    $lawyer_hub_tp_theme_css .= '@media screen and (min-width: 768px) {';
    $lawyer_hub_tp_theme_css .= '#slider img {';
    if ( $lawyer_hub_slider_img_height ) {
        $lawyer_hub_tp_theme_css .= 'height: ' . esc_attr( $lawyer_hub_slider_img_height ) . ';';
    }
    $lawyer_hub_tp_theme_css .= 'width: 100%; object-fit: cover;';
    $lawyer_hub_tp_theme_css .= '}';
    $lawyer_hub_tp_theme_css .= '}';

    // Mobile height
    $lawyer_hub_tp_theme_css .= '@media screen and (max-width: 767px) {';
    $lawyer_hub_tp_theme_css .= '#slider img {';
    if ( $lawyer_hub_slider_img_height_resp ) {
        $lawyer_hub_tp_theme_css .= 'height: ' . esc_attr( $lawyer_hub_slider_img_height_resp ) . ' !important;';
    }
    $lawyer_hub_tp_theme_css .= 'width: 100%; object-fit: cover;';
    $lawyer_hub_tp_theme_css .= '}';
    $lawyer_hub_tp_theme_css .= '}';


    //First Cap ( Blog Post )
    $lawyer_hub_show_first_caps = get_theme_mod('lawyer_hub_show_first_caps', 'false');
    if($lawyer_hub_show_first_caps == 'true' ){
    $lawyer_hub_tp_theme_css .='.blog .page-box p:nth-of-type(1)::first-letter{';
    $lawyer_hub_tp_theme_css .=' font-size: 55px; font-weight: 600;';
    $lawyer_hub_tp_theme_css .=' margin-right: 6px;';
    $lawyer_hub_tp_theme_css .=' line-height: 1;';
    $lawyer_hub_tp_theme_css .='}';
    }elseif($lawyer_hub_show_first_caps == 'false' ){
    $lawyer_hub_tp_theme_css .='.blog .page-box p:nth-of-type(1)::first-letter {';
    $lawyer_hub_tp_theme_css .='display: none;';
    $lawyer_hub_tp_theme_css .='}';
    }

    // Menu hover effect
    $lawyer_hub_menus_item = get_theme_mod( 'lawyer_hub_menus_item_style','None');
    if($lawyer_hub_menus_item == 'None'){
        $lawyer_hub_tp_theme_css .='.main-navigation a:hover{';
            $lawyer_hub_tp_theme_css .='';
        $lawyer_hub_tp_theme_css .='}';
    }else if($lawyer_hub_menus_item == 'Zoom In'){
        $lawyer_hub_tp_theme_css .='.main-navigation a:hover{';
            $lawyer_hub_tp_theme_css .='transition: all 0.3s ease-in-out !important; transform: scale(1.2) !important;';
        $lawyer_hub_tp_theme_css .='}';
    }

    
// footer widget letter case
$lawyer_hub_footer_widget_title_text_tranform = get_theme_mod( 'lawyer_hub_footer_widget_title_text_tranform','');
if($lawyer_hub_footer_widget_title_text_tranform == 'Uppercase'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='text-transform: uppercase;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_text_tranform == 'Lowercase'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='text-transform: lowercase;';
$lawyer_hub_tp_theme_css .='}';
}
else if($lawyer_hub_footer_widget_title_text_tranform == 'Capitalize'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='text-transform: capitalize;';
$lawyer_hub_tp_theme_css .='}';
}

//Footer Font Weight
$lawyer_hub_footer_widget_title_font_weight = get_theme_mod( 'lawyer_hub_footer_widget_title_font_weight','');
if($lawyer_hub_footer_widget_title_font_weight == '100'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 100;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '200'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 200;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '300'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 300;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '400'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 400;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '500'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 500;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '600'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 600;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '700'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 700;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '800'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 800;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_font_weight == '900'){
$lawyer_hub_tp_theme_css .='#footer h2, #footer h3, #footer h1.wp-block-heading, #footer h2.wp-block-heading, #footer h3.wp-block-heading, #footer h4.wp-block-heading, #footer h5.wp-block-heading, #footer h6.wp-block-heading {';
    $lawyer_hub_tp_theme_css .='font-weight: 900;';
$lawyer_hub_tp_theme_css .='}';
}

// footer widget position
$lawyer_hub_footer_widget_title_position = get_theme_mod( 'lawyer_hub_footer_widget_title_position','');
if($lawyer_hub_footer_widget_title_position == 'Right'){
$lawyer_hub_tp_theme_css .='#footer aside.widget-area{';
$lawyer_hub_tp_theme_css .='text-align: right;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_position == 'Left'){
$lawyer_hub_tp_theme_css .='#footer aside.widget-area{';
$lawyer_hub_tp_theme_css .='text-align: left;';
$lawyer_hub_tp_theme_css .='}';
}else if($lawyer_hub_footer_widget_title_position == 'Center'){
$lawyer_hub_tp_theme_css .='#footer aside.widget-area{';
$lawyer_hub_tp_theme_css .='text-align: center;';
$lawyer_hub_tp_theme_css .='}';
}

// Slider animation
$lawyer_hub_slider_sec_animation = get_theme_mod( 'lawyer_hub_slider_sec_animation', true );
if ( $lawyer_hub_slider_sec_animation ) {
    $lawyer_hub_tp_theme_css .= '#slider { animation: bounceInDown 3s; animation-fill-mode: both; }';
}

// About Section ANimation
$lawyer_hub_about_sec_animation = get_theme_mod( 'lawyer_hub_about_sec_animation', true );
if ( $lawyer_hub_about_sec_animation ) {
    $lawyer_hub_tp_theme_css .= '#about { animation: bounceInDown 3s; animation-fill-mode: both; }';
}

// footer Section ANimation
$lawyer_hub_footer_animation = get_theme_mod( 'lawyer_hub_footer_animation', true );
if ( $lawyer_hub_footer_animation ) {
    $lawyer_hub_tp_theme_css .= '#footer { animation: bounceInDown 3s; animation-fill-mode: both; }';
}

// Output the complete CSS
if ( ! empty( $lawyer_hub_tp_theme_css ) ) {
    echo '<style id="lawyer-hub-dynamic-css">' . $lawyer_hub_tp_theme_css . '</style>';
}
?>