/*
Theme Name: Weblizar Demo Management 
Theme URI: https://weblizar.com/theme-bundle/
Author: Weblizar
Author URI: https://weblizar.com/
Description: Weblizar Demo Management  is a powerful WordPress theme designed specifically for Weblizar Demo management. 
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.4
Version:1.0.0
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: weblizar-demo-management
Tags: left-sidebar, right-sidebar, one-column, two-columns, three-columns, four-columns, grid-layout, wide-blocks, block-styles, block-patterns, flexible-header, custom-colors, custom-background, custom-logo, custom-menu, custom-header, editor-style, featured-images, footer-widgets, sticky-post, full-width-template, theme-options, translation-ready, threaded-comments, post-formats, rtl-language-support, blog, portfolio, education
*/
 
/* Basic Style */


/* ==========================================================================
   LIGHTWEIGHT NATIVE CSS GRID & FLEXBOX SYSTEM (ZERO THIRD-PARTY LIBS)
   High performance, zero-dependency responsive grid & utility system
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

/* Containers */
.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* Grid Rows & Columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-9  { flex: 0 0 auto; width: 75%; }
.col-8  { flex: 0 0 auto; width: 66.666667%; }
.col-7  { flex: 0 0 auto; width: 58.333333%; }
.col-6  { flex: 0 0 auto; width: 50%; }
.col-5  { flex: 0 0 auto; width: 41.666667%; }
.col-4  { flex: 0 0 auto; width: 33.333333%; }
.col-3  { flex: 0 0 auto; width: 25%; }
.col-2  { flex: 0 0 auto; width: 16.666667%; }
.col-1  { flex: 0 0 auto; width: 8.333333%; }

@media (min-width: 768px) {
  .col-md-12 { flex: 0 0 auto; width: 100%; }
  .col-md-9  { flex: 0 0 auto; width: 75%; }
  .col-md-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-md-6  { flex: 0 0 auto; width: 50%; }
  .col-md-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-md-3  { flex: 0 0 auto; width: 25%; }
  .mb-md-0   { margin-bottom: 0 !important; }
  .pe-md-3   { padding-right: 1rem !important; }
  .py-md-5   { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
  .col-lg-9  { flex: 0 0 auto; width: 75%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%; }
  .col-lg-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-3  { flex: 0 0 auto; width: 25%; }
  .mb-lg-0   { margin-bottom: 0 !important; }
  .pe-lg-4   { padding-right: 1.5rem !important; }
  .px-lg-4   { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .text-lg-start { text-align: left !important; }
  .text-lg-end   { text-align: right !important; }
  .gap-lg-3  { gap: 1rem !important; }
}

/* Display & Flex Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  .d-sm-inline { display: inline !important; }
  .d-sm-inline-flex { display: inline-flex !important; }
}

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
}

@media (min-width: 1200px) {
  .d-xl-none { display: none !important; }
  .d-xl-block { display: block !important; }
  .d-xl-inline-flex { display: inline-flex !important; }
}

/* Flex Alignment & Spacing */
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

/* Spacing Utilities */
.m-0  { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }

.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }

.p-0  { padding: 0 !important; }
.p-1  { padding: 0.25rem !important; }
.p-2  { padding: 0.5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

/* Text Utilities */
.text-center { text-align: center !important; }
.text-start  { text-align: left !important; }
.text-end    { text-align: right !important; }
.text-white  { color: #ffffff !important; }
.text-primary { color: var(--wdm-primary, #4f46e5) !important; }
.text-warning { color: #f59e0b !important; }
.text-muted   { color: #64748b !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
*{
  margin: 0;
  padding: 0;
  outline: none;
}
html {
  height: 100%;
  overflow-x: hidden;
}
body { 
  margin: 0; 
  padding: 0; 
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  background-color: #f8fafc;
  font-size: 15px; 
  color: #475569;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header[role="banner"] {
  flex-shrink: 0;
}

main,
#maincontent,
.site-main,
.wdm-page {
  flex: 1 0 auto;
}

footer,
footer[role="contentinfo"] {
  margin-top: auto;
  flex-shrink: 0;
}
img{
  margin:0;
  padding:0;
  border:none; 
  max-width:100%; 
  height:auto;
}
section img{
  max-width:100%;
}
h1, h2, h3, h4, h5, h6{
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
}
p {
  color: #8d8b8b;
  font-size: 15px;
}
a{ 
  text-decoration:none; 
  color: #21286A;
}
a:hover{
  text-decoration:none;
  color:#21286A;
}
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--wdm-primary, #4f46e5);
  outline-offset: 2px;
}
code {
  color: #212fcd;
}
input[type='submit']:hover{
  cursor: pointer;
}
.center{ 
  text-align:center; 
  margin-bottom:40px;
}
button{
  padding: 5px;
}
.home .middle-align{
  padding: 0;
}
.middle-align,.blog .middle-align{ 
  margin: 0 auto; 
  padding: 3em 0;
}
.wp-caption{ 
  margin:0; 
  padding:0; 
  font-size:13px; 
  max-width:100%;
}
.wp-caption-text{ 
  margin:0; 
  padding:0; 
}
.sticky{ 
  margin:0; 
  padding:0; 
}
.sticky .post-main-box h2:before{
  content: '\f08d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 20px;
  font-size: 20px;
}
.gallery-caption{ 
  margin:0;
  padding:0;
}
.alignleft,img.alignleft {
  display: inline; 
  float: left; 
  margin-right:20px; 
  margin-top:4px; 
  margin-bottom:10px; 
  padding:0;
}
.alignright, img.alignright { 
  display: inline; 
  float: right; 
  margin-bottom:10px;
  margin-left:25px;
}
.aligncenter, img.aligncenter {
  clear: both; 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  margin-top:0;
}
.alignnone,img.alignnone {
  padding: 5px;
}
.comment-list .comment-content ul { 
  list-style:none; 
  margin-left:15px;
}
.comment-list .comment-content ul li{
  margin:5px;
}
.toggleMenu{
  display:none;
}
.bypostauthor{
  margin:0;
  padding:0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
textarea {
  border: 1px solid #cbd5e1;
  width: 100%;
  font-size: 14px;
  padding: 8px 14px;
  margin: 0 0 16px 0;
  height: 42px;
  border-radius: 8px;
  color: #1e293b;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
textarea {
  height: auto;
  min-height: 90px;
}
input[type="submit"] {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--wdm-primary, #4f46e5);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
input[type="submit"]:hover {
  background: #4338ca;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}
div#respond{
  border-top: solid 1px #bcbcbc;
  margin-top: 18px;
}
h2#reply-title {
  margin-top: 20px;
}
/*---------- WIDE BLOCKS ------------*/

.alignwide {
  margin-left  : -80px;
  margin-right : -80px;
}
.alignfull {
  margin-left  : calc( -100vw / 2 + 100% / 2 );
  margin-right : calc( -100vw / 2 + 100% / 2 );
  max-width    : 100vw;
}
.alignfull img {
  width: 100vw;
}
/*css for block-cover and block-image*/
.services .alignfull, .services .alignwide{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.services .alignfull img{
  width: 100%;
}
/*new added css*/
#sidebar h3 a.rsswidget{
  margin-right: 10px;
}
.wp-block-post-comments-form .comment-reply-title{
  padding-top: 15px;
}
li#comment-2{
  margin-bottom: 10px;
}
#sidebar .wp-block-latest-posts.wp-block-latest-posts__list, #sidebar ul.sub-menu{
  display: block !important;
}
#sidebar .widget .custom-about-us, #sidebar .widget .custom-contact-us{
  padding: 30px 10px;
}
/*footer without classic widgets*/
#footer .widget{
  margin-top: 25px;
  margin-bottom: 25px;
}
#footer .wp-block-tag-cloud a {
  border: solid 1px #fff;
  color: #fff;
  font-size: 14px !important;
  padding: 10px 18px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
#footer .custom-about-us a.custom_read_more, #sidebar .custom-about-us a.custom_read_more{
  background: #21286A;
  border-radius: 5px;
  padding: 10px 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
#footer .custom-about-us .custom_author{
  margin-bottom: 12px;
  margin-top: 12px;
}
#footer label{
  color: #fff !important;
}
#footer .wp-block-heading{
  color: #fff;
}
#footer .wp-block-button.aligncenter, .wp-block-calendar{
  text-align: start;
}
#footer .wp-block-button.aligncenter, .wp-block-calendar  a, #footer .wp-block-button.aligncenter, .wp-block-calendar  a:hover{
  color:#21286A;
}
/*---------- ACCESSIBILITY ------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/* ------------ LOGO CSS ----------- */
p.site-title, .logo h1 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}
p.site-title a, .logo h1 a,  p.site-description{
  color: #fff;
}
p.site-title a:hover, .logo h1 a:hover{
  color: #fff;
}
/*----------------- TOP BAR ----------------*/
.topbar{
  padding: 15px 0px;
}
.home-page-header{
  box-shadow: 2px 0 15px rgb(0 0 0 / 65%);
}
.topbar .account a{
  font-size: 25px;
  color: #000;
}
.header-button a{
  background: #21286A;
  padding:  12px 15px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
}
.header-button a:hover, .slide-search input.search-submit:hover, .popular-cat-btn a:hover{
  background: #74CAF9 !important;
  color: #000 !important;
}
/* --------- Header --------- */
.menu-header{
  background-color: #333029;
}
.header-menu {
  padding: 20px 0 15px;
  background: #f5f0e9;
}
.admin-bar .home-page-header{
  /*margin-top: 32px;*/
}
#comments input[type="submit"]:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.widget_product_search button:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce a.added_to_cart.wc-forward:hover {
  background: #74CAF9 ;
  color: #000 !important;
}

/* ------------ Social Media ----------- */
.social-media .custom_title{
  display: none;
}
.social-media{
  position: relative;
}
.social-media .custom-social-icons i{
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
  background: transparent;
  padding: 14px 0;
  border-radius: 50%;
  border: 1px solid #fff;
  width: 45px;
  height: 45px;
  text-align: center;
}
.social-media .custom-social-icons i:hover{
  background-color: #21286A;
  color: #333029;
}
.social-media .custom-social-icons{
  display: inline-flex;
  position: absolute;
  right: 10%;
  bottom: 100px
}
/* --------- MENUS CSS --------- */
#mySidenav {
  display: inline-block;
}
.main-navigation ul{
  margin: 0;
  padding: 0;
}
.main-navigation li{
  display: inline-block;
  position: relative;
}
.main-navigation a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding: 12px 15px;
  text-transform: capitalize;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.main-navigation ul ul li a:hover, .main-navigation li a:focus, .main-navigation ul ul a:focus, .main-navigation ul ul a:hover {
  color: #21286A;
}
.main-navigation ul li.current_page_item{
  color: #21286A !important;
}
.main-navigation ul ul li.current_page_item, .main-navigation ul ul li a:hover{
  background-color: transparent;
}
.main-navigation ul li.current_page_item a{
  color: #fff;
}
.main-navigation li a:hover {
  background-color: #FDC441;
  color: #fff;
}

.main-navigation ul ul{
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  z-index: 9999;
  top: 100%;
  line-height: 1.5;
  border: none;
} 
.main-navigation ul li.page_item_has_children.focus ul,.main-navigation ul li.menu-item-has-children.focus ul{
  opacity: 1;
}
.main-navigation ul ul ul{
  left: 100%;
  top: 0%;
}
.main-navigation ul ul a{
  color: #334155;
  padding: 8px 12px;
  border: none;
  margin: 0;
  transition: all 0.15s ease;
}
.main-navigation ul ul li{
  float: none;
  display: block;
  text-align: left;
  border: none;
  padding: 0;
}
.main-navigation ul ul li:last-child{
  border: none;
}
.main-navigation ul li:hover > ul{
  display: block;
}
.main-navigation .menu > ul > li.highlight{
  background-color: #006ccc;
}
.main-navigation .menu > ul > li.highlight:hover{
  background: transparent;
}
/*----------------- SEARCH POPUP ----------------*/

.middle-header .woocommerce-product-search {
  border: 1px solid #21286A61;  
  padding: 3px 6px;
  border-radius: 6px;
}
.search-icon button[type="submit"]{
  padding: 8px 30px;
  background: url(assets/images/search.png) no-repeat scroll 20px #21286A;
  text-indent: -9999px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}
.middle-header input[type="search"]{
  border: none;
  width: 85%;
  padding: 10px 4px;
  background: transparent;
  margin-bottom: 0 !important;
  color: #121212;
  text-transform: uppercase;

}
/*--------------- SUPERFISH MENU ---------------------------*/
.toggle-nav, a.closebtn, .social-icons h3.custom_title{
  display: none;
}
/* --------- SLIDER --------- */
#slider{ 
  max-width:100%; 
  margin:auto; 
  position: relative;
}
#slider img {
  width: 100%;
  position: relative;
  opacity: 0.7;
  object-fit: cover;
}
#slider .carousel-item-next,
#slider .carousel-item-prev,
#slider .carousel-item.active {
  display: block !important;  
}
#slider .carousel-control-prev-icon, 
#slider .carousel-control-next-icon{
  background-image: none;
  font-size: 35px;
  color: #21286A;
}
#slider .carousel-control-prev-icon:hover, 
#slider .carousel-control-next-icon:hover{
  color: #74CAF9;
}
#slider .carousel-control-prev,
#slider .carousel-control-next{
  opacity: unset !important;
  width: 8%;
}
#slider .carousel-control-next-icon,
#slider .carousel-control-prev-icon{
  width: auto;
  height: auto;
}
#slider .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  z-index: 99;
  left: 15%; 
  right: 50%;
  padding: 28px;
}
#slider .inner_carousel h1 {
  font-size: 50px;
  margin-bottom: 10px;
  font-weight: 600;
}
#slider .inner_carousel h1 a{
  color: #000000;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
}
#slider .inner_carousel h1 a:hover{
  color: #21286A;
}
#slider p{
  color: #6B6A6A;
  font-size: 16px;
  margin-bottom: 25px;
}
#slider .slider-btn a{
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  background-color: #21286A;
  padding: 12px 20px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  border-radius: 30px;
}
#slider .slider-btn a:hover{
  background: #74CAF9 !important;
  color: #000 !important;
}
/* --------- Product Section --------- */

.heading-text{
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
#popular-job-section p{
  color: #010101;
}
#popular-job-section img{
  width: auto;
}
#popular-job-section h3{
  padding: 10px 0;
}
#popular-job-section h3 a{
  color: #010101;
  font-weight: 500;
  font-size: 25px;
  padding: 10px 0;
}
.marketing, .apllicant, .prices{
  color: #010101;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}
.catgory-box{
  border: 0.5px solid #B2B2B2;
  border-radius: 10px;
  padding: 32px;
}
hr.cat-features {margin: 2rem 0 !important;}
.features-meta-fields1{
  background: rgb(116 202 249 /20%);
  border-radius: 30px;
  color: #74CAF9;
  padding: 12px 20px !important;
  display: inline-block;
  margin: 5px 10px 0px 0px;
  font-weight: 700;
}
.features-meta-fields2{
  background: rgb(255 164 230/ 20%);
  border-radius: 30px;
  color: #FFA4E6;
  padding: 12px 20px!important;
  display: inline-block;
  margin: 5px 10px 0px 0px;
  font-weight: 700;
}
.popular-cat-btn a{
  background: #21286A;
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
}
.brouse-button a{
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
}
.brouse-button i{
  font-size: 20px;
  margin-left: 10px;
}
/*star*/
.main-product-section .star-rating{
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: star;
  color: #fdce38;
  left: 50%;
  transform: translate(-50%);
  margin-bottom: 10px;
}
.main-product-section .star-rating:before{
  content: "\73\73\73\73\73";
  color: #fdce38;
  float: right;
  top: 0;
  left: 0;
  position: absolute;
}
.main-product-section .star-rating span::before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
}
.main-product-section .star-rating span{
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
/*Woocommerce star*/
.woocommerce ul.products li.product .star-rating{
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: star;
  color: #fdce38;
  left: 50%;
  margin-bottom: 10px;
  transform: translate(-50%);
}
.woocommerce ul.products li.product .star-rating:before{
  content: "\73\73\73\73\73";
  color: #fdce38;
  float: right;
  top: 0;
  left: 0;
  position: absolute;
}
.woocommerce ul.products li.product .star-rating span::before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
}
.woocommerce ul.products li.product .star-rating span{
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
/* --------- BUTTONS--------- */
.error-btn a, .more-btn a , #comments input[type="submit"],#comments a.comment-reply-link,input[type="submit"],.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,.pro-button a, .woocommerce a.added_to_cart.wc-forward {
  background-color: #21286A;
  color: #fff;
  font-size: 15px;
  font-weight: 700 !important;
  padding: 12px 20px !important;
  text-transform: capitalize;
  border-radius: 30px !important;
  text-decoration: none !important;
}
.error-btn a:hover, .more-btn a:hover,input[type="submit"]:hover, #comments a.comment-reply-link:hover,.pagination a:hover, .pro-button a:hover{
  background: #74CAF9;
  color: #000 !important;
}
.woocommerce a.added_to_cart.wc-forward {
  margin-left: 10px;
  line-height: 1;
}
/*----------- PRELOADER ----------*/
#preloader {
  background: #21286A;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
  height: 100%;
}
.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.loader-line-wrap {
  animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}
.loader-line {
  border: 4px solid #ffffff;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.loader-line-wrap:nth-child(1) { animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
  height: 90px;
  width: 90px;
  top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
  height: 76px;
  width: 76px;
  top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
  height: 62px;
  width: 62px;
  top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
  height: 48px;
  width: 48px;
  top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
  height: 34px;
  width: 34px;
  top: 35px;
}
@keyframes spin {
  0%, 15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.elementor-page #preloader{
  display: none;
}
/* --------- FOOTER ------- */
#footer .tagcloud a{
  border: solid 1px #ffffff;
  color:#ffffff;
  font-size: 14px !important;
  padding: 6px 12px;
  display:inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
#footer .tagcloud a:hover{
  background: #21286A;
  border: solid 1px #21286A;
}
#footer input[type="submit"]{
  margin-top: 0;
  font-size: 15px;
  width: 100%;
  background: #21286A;
  color: #fff;
  border-radius: 0 !important;
}
#footer label, iframe, .entry-audio audio, #our-services iframe,#sidebar input[type="submit"],span.woocommerce-input-wrapper,.checkout label,.woocommerce-page form .password-input,.woocommerce label {
  width: 100%;
}
#footer .search-form .search-field {
  width: 100%;
  border: solid 1px #ffffff;
  background:transparent;
  color: #fff;
}
#footer caption,#sidebar caption {
  color: #ffffff;
  font-size: 20px;
}
#footer table{
  width: 100%;
}
#footer table,#footer th,#footer td{
  border: 1px solid #ffffff;
  text-align: center;
}
#footer td ,#sidebar td{
  padding: 7px;
  color: #ffffff;
}
#footer th {
  text-align: center;
  padding: 10px;
  color: #ffffff;
  background: transparent;
  font-weight: bold;
}
#footer nav.wp-calendar-nav a {
  color: #fff;
}
#footer ul li {
  list-style: none;
  padding: 15px 0;
  font-size: 15px;
}
.rss-widget-title{
  font-size: 24px !important;
}
#footer p{
  line-height: 30px;
}
#footer ul {
  margin: 0;
  padding-left: 0;
}
#sidebar select ,#footer select {
  padding: 10px 5px;
  width: 100%;
}
.sub-title{
  margin: 5em 0 0 0;
  line-height: 2em;
}
#footer {
  background: #000000;
}
#footer-2 {
  background: #000000;
}
#footer h3, #footer .wp-block-search .wp-block-search__label{
  font-size: 30px;
  letter-spacing: 1px;
  border-bottom: 1px dashed;
  margin-bottom: 30px;
}
#footer .wp-block-search .wp-block-search__inside-wrapper, #sidebar .wp-block-search .wp-block-search__inside-wrapper{
  flex-wrap: wrap;
  display: block;
}
#footer .wp-block-search .wp-block-search__input, #sidebar .wp-block-search .wp-block-search__input {
  padding:10px 10px;
  font-size:15px;
  margin-bottom: 10px;
  color:#4d4749;
  border: solid 1px #e1e1e1;
  width: 100%;
  border-radius: 3px;
}
#footer .wp-block-search .wp-block-search__button, #sidebar .wp-block-search .wp-block-search__button{
  background: #21286A;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  width: 100%;
  margin-left: 0;
  border-radius: 5px !important;
}
#footer p, #footer li a,#footer, #footer h3,#footer #wp-calendar a,.copyright a,#footer .custom_details,#footer ins span,#footer .tagcloud a,.main-inner-box span.entry-date a,nav.woocommerce-MyAccount-navigation ul li:hover a {
  color: #fff;
  font-size: 15px;
}
#footer a.rsswidget.rss-widget-title{
  color: #fff;
}
.entry-date a, .entry-author a{
  color: #000 !important;
}
.copyright .widget {
  margin-bottom: 0 !important;
}
.copyright .widget .custom-social-icons{
  display: inline-flex;
  margin-top: 10px;
}
.copyright p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
}
.copyright .custom-social-icons i{
  margin-left: 12px;
  font-size: 18px;
  background: transparent !important;
  color: #fff!important;
}
.copyright .custom-social-icons .custom_title{
  display: none;
}
.copyright a:hover{
  color: #000;
}
.scrollup i{
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 70px;
  right: 15px;
  font-size: 25px;
  display: none;
  background: #21286A;
  z-index: 999;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
}
.scrollup i:hover{
  background: #74CAF9;
  color: #000;
}
.scrollup.left i{
  left: 10px;
}
.scrollup.center i{
  left: 50%;
  right: 50%;
}
/*blog post navigation css*/
nav.navigation.posts-navigation .nav-previous a{
  padding: 15px 15px;
  color: #fff !important;
  font-size: 15px;
  line-height: 13px;
  font-weight: bold;
  text-align: left;
  background: #21286A;
}
nav.navigation.posts-navigation .nav-next a{
  padding: 15px 15px;
  color: #fff;
  font-size: 15px;
  line-height: 13px;
  font-weight: bold;
  text-align: right;
  background: #21286A;
}
nav.navigation.posts-navigation .nav-previous a:hover, nav.navigation.posts-navigation .nav-next a:hover{
  background: #74CAF9;
}
nav.navigation.posts-navigation .nav-previous, nav.navigation.posts-navigation .nav-next{
  margin-top: 0;
}
/* --------- BLOG PAGE ------- */
.post-main-box, .grid-post-main-box {
  border: 1px solid #f0f0f0;
  box-shadow: 0px 15px 35px -15px #f0f0f0;
  background: #fff;
}
.post-main-box:hover h2 a, .post-main-box:hover .post-info span a, .single-post .post-info:hover a, .middle-bar h6,
.grid-post-main-box:hover h2 a, .grid-post-main-box:hover .post-info span a {
  color: #21286A !important;
}
.post-main-box h2 a, .post-main-box p, .grid-post-main-box h2 a, .grid-post-main-box p {
  color: #000;
}
.post-main-box h2 , .grid-post-main-box h2{
  font-size: 25px;
}
.new-text p {
  line-height: 26px;
}
.new-text h2 {
  font-size: 30px;
  letter-spacing: 1px;
}
.post-info{
  font-size: 12px;
  background: #F6F6F6;
}
.single-post .post-info{
  background: #F6F6F6;
}
.post-info span {
  margin-right: 1%;
}
.post-info span a, span.entry-comments, span.entry-time{
  font-weight: bold;
  letter-spacing: 1px;
  color: #222;
  font-size: 13px;
}
.post-info i{
  color: #222;
}
.tags-bg a {
  text-decoration: none!important;
  font-weight: 400;
  color: #121212!important;
  background: #f8f8f8;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgb(0 0 0 / 8%);
  text-shadow: none;
  line-height: 3.5;
  padding: 8px;
  margin: 5px;
  font-size: 15px;
}
.tags-bg a:hover{
  color: #21286A !important;
}
.nav-links {
  margin-bottom: 20px;
}
.related-post h2{
  margin-top: 20px !important;
}
.related-post .post-main-box{
  padding: 20px 10px;
}
/* --------- POST --------- */
.post-main-box span, .grid-post-main-box span{
  margin-right: 1%;
}
.post-main-box i, .grid-post-main-box i{
  margin-right: 10px;
  color: #000;
}
.post-main-box .metabox, .grid-post-main-box .metabox{
  line-height: 30px;
}
h2#reply-title {
  text-align: left;
  margin-bottom: 0;
  text-transform: none;
}
.breadcrumbs{
  padding:30px 0;
}
.breadcrumbs a, .post-categories li a,.breadcrumbs span{
  background:#21286A; 
  color:#fff;
  padding:5px 10px;
  margin-right:5px;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 600;
}
.breadcrumbs a:hover, .post-categories li a:hover{
  background:#21286A;
}
/*------------------ category ----------------*/
.post-categories li ,.single-post ul{
  display: inline-block;
   padding-left: 0;
}
.single-post-category span{
  font-weight: 600;
}
/*-------------- Comments BOX------------- */
#comments ol.children img {
  width: 30px;
}
#comments ol {
  list-style: none;
  padding-left: 0;
}
#comments{  
  margin-top:30px;
}  
#comments h2.comments-title{
  font-size:20px;
  font-weight:bold;
  border-top:2px dotted #7e7e7e;
  padding:40px 0 0 0;
}
#comments h3.comment-reply-title{
  font-size:20px;
  font-weight:bold;
  clear:both;
}  
#comments input[type="text"],#comments input[type="email"],#comments textarea,input#url{
  width:100%;
  padding:12px 10px;
  font-size:18px;
  margin:20px 0 0 0;
}
#comments input[type="submit"],#comments a.comment-reply-link{
  padding: 10px 20px;
  text-decoration: none;
}
#comments ol li {
  width: 100%;
  list-style: none;
  margin: 0 0 20px !important;
  padding: 20px !important;
  background: #fff;
  display: inline-block;
  border: solid 1px #f0f0f0;
}
.comment-meta.commentmetadata {
  float: right;
  width: 50%;
  text-align: right;
}
#comments .reply{
  float:left;
  margin-bottom: 15px;
}
#comments .comment-author {
  width: 50%;
  float: left;
}
#comments .comment-metadata{
  width:90%;
  float:left;
  padding:1% 0 0 0;
}
#comments .comment-content{
  width:100%;
  float:left;
  margin:10px 0 10px 0;
}
#comments .comment-content p {
  width:100%;
  float:left;
  color: #000;
}
p.comment-form-comment label {
  display: block;
}
/*------------ Sidebar------------------- */
#sidebar .custom-social-icons{
  text-align: center;
}
#sidebar .custom-social-icons p,#footer .custom-social-icons p{
  margin-bottom: 30px !important;  
  display: inline-block;
}
#sidebar .custom-social-icons a,#footer .custom-social-icons a{
  padding: 10px 15px;
  color: #fff;
  background: #21286A;
}
#sidebar .custom-social-icons a:hover, #footer .custom-social-icons a:hover, #footer input[type="submit"]:hover{
  background: #21286A;
  color: #333029;
}
#sidebar caption {
  color: #151821;
  font-size: 20px;
}
#sidebar table,#sidebar th,#sidebar td {
  border: 1px solid #e1e1e1;
  text-align: center;
}
#sidebar td {
  padding: 7px;
  color: #151821;
}
#sidebar th {
  text-align: center;
  padding: 5px;
  color: #151821;
}
#sidebar select, .woocommerce .woocommerce-ordering select{
  padding: 10px 5px;
  border: solid 1px #e1e1e1;
  color: #151821;
  background: transparent;
}
#sidebar h3,  #sidebar .widget_block h3, #sidebar h2, #sidebar label.wp-block-search__label, #sidebar .wp-block-heading{
  font-size: 22px;
  display: table;
  margin: -45px auto 10px auto;
  background: #21286A;
  color: #fff;
  border-radius: 0px;
  width: auto;
  padding: 10px 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
#sidebar input[type="search"],
input.search-field {
  font-size:15px;
  margin-bottom: 10px;
  color:#151821;
  border: 1px solid #e1e1e1;
  background: #f7f7fd;
  width: 100%;
  padding: 10px;
  border-radius: 0px;
}
#sidebar label{
  margin-bottom: 0;
  width: 100%;
}
h3#reply-title{
  margin-top: 20px;
}
#sidebar .widget {
  border: 1px solid #f0f0f0;
  box-shadow: 0px 15px 35px -15px #f0f0f0;
  background: #fff;
  margin-bottom: 60px !important;
  padding: 10px !important; 
}
#sidebar .widget p{
  color: #000;
}
#sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidebar ul li{
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 43px;
}
#sidebar ul li:hover {
  margin-left: 10px;
  transition: 0.5s;
  color: #21286A;
}
#sidebar ul li a {
  color: #000;
  font-size: 15px;
}
#sidebar .tagcloud a{
  border: solid 1px #000;
  color: #000;
  font-size: 14px !important;
  padding: 10px 18px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
#sidebar .tagcloud a:hover{
  background: #21286A;
  color: #fff;
  border: 1px solid transparent;
  transition: 0.1s;
}
#sidebar h3 a.rsswidget{
  color: #fff;
}
.tag-cloud-link {
  font-size: 16px !important;
  border: 1px solid;
  padding: 4px;
  margin: 10px;
}
.nav-previous,.nav-next{
  float:left;
  width:50%;
}
.nav-next{
  text-align:right;
  font-size: 18px;
}
.nav-previous{
  text-align:left;
  font-size: 18px;
  margin-top: 0 !important;
}
.navigation{
  margin-bottom: 15px;
}
.woocommerce-page #sidebar {
  margin-top: 20px;
}
.hidden-title-form .edit-title-buttons {
    top: calc(50% - 26px);
}
.woocommerce ul.products li.product{
  padding: 30px 20px 20px 20px;
  border: 1px solid #D8D8D8;
  text-align: center;
  box-shadow: 0px 3px 6px #00000029;
}
/*------------ PAGE CSS -------------*/
.post-main-box:hover h3 a,#sidebar ul li a:hover, #footer li a:hover,.post-navigation a:hover .post-title,
.post-navigation a:focus .post-title,.post-navigation a:hover,.post-navigation a:focus{
  color: #21286A;
}
.error404 .page-content{
  text-align: center;
  margin: 30px 0 40px 0;
}
#content-vw a,.entry-content a,.widget_text a,.woocommerce-page .entry-summary a,.comment-content p a{
  text-decoration: underline;
}
.woocommerce-page .entry-summary a{
  text-decoration: none !important;
}
.wishlist_table tr td, .wishlist_table tr th.product-checkbox, .wishlist_table tr th.wishlist-delete{
  text-align: left !important;
}
.woocommerce table.shop_table th{
  font-size: 16px !important;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table{
  font-size: 16px !important;
}
.woocommerce a.remove{
  text-decoration: none !important;
}
.woocommerce-error {
  border-top-color: #21286A;
}
.woocommerce-error::before{
  color: #21286A;
}
.woocommerce div.product form.cart{
  margin-bottom: 0;
}
.yith-wcwl-add-button>a i{
  margin-right: 0;
}
/*WOOCOMMERCE NAVIGATION CSS*/
.woocommerce nav.woocommerce-pagination ul li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #21286A;
  transition: background .15s ease-in-out;
  font-weight: bold;
}
.woocommerce nav.woocommerce-pagination ul li a:hover{
  background: #74CAF9;
  color: #000;
}
.woocommerce nav.woocommerce-pagination ul li span.current{
  padding: 12.5px 15px;
  background: #74CAF9;
  color: #000;
  font-weight: normal;
}
.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
  border: none;
  float: none;
  overflow: unset;
}
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-bottom: 20px;
}
/*------------- PAGINATION CSS --------------*/
p.post-nav-links, .post-nav-links span, .post-nav-links a {
  float: unset !important;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.pagination {
  clear:both;
  position:relative;
  font-size:14px;
  line-height:13px;
  float:right;
  font-weight:bold;
  width:100%;
  margin-bottom: 30px;
} 
.pagination span, .pagination a, .post-nav-links span, .post-nav-links a {
  display:block;
  float:left;
  margin: 2px 5px 2px 0;
  padding:10px 15px;
  text-decoration:none;
  width:auto;
  color: #fff !important;
  background: #21286A;
  border-radius: 0;
  -webkit-transition: background .15s ease-in-out;
  -moz-transition: background .15s ease-in-out;
  -ms-transition: background .15s ease-in-out;
  -o-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}
.pagination a:hover, .pagination .current, span.post-page-numbers.current, .post-nav-links a:hover{
  background: #21286A;
  color: #fff !important;
}
.pagination .current {
  padding: 10px 15px;
  font-weight: bold;
}
.post-navigation,.post-navigation,.nav-previous,.related-post,#respond,.clear{
  clear:both;
}
.nav-previous {
  float: left;
  width: 50%;
}
.post-navigation .current .screen-reader-text { 
  position: absolute !important; 
}
.post-navigation a { 
  color: #151821; 
  display: block;
}
.post-navigation span.meta-nav {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  padding: 15px;
  color: #fff;
}
.post-navigation span.meta-nav:hover{
  color: #21286A;
}
.nav-previous span.meta-nav:before {
  content: "\f30a";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 18px;
  margin-right: 10px;
}
.nav-next span.meta-nav:after {
  content: "\f30b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 18px;
  margin-left: 10px;
}
.post-navigation span { 
  display: block; 
}
.post-navigation .meta-nav { 
  color: #686868; 
  font-size: 13px;
  line-height: 1.6153846154; 
  margin-bottom: 0.5384615385em; 
  text-transform: uppercase; 
}
.post-navigation .post-title {
  display: none;
}
.post-navigation:before {
  right: 0;
}
.post-navigation:after {
  right: 54px;
}
.post-navigation .nav-links {
  position: relative;
}
.post-navigation .nav-links:before,.post-navigation .nav-links:after {
  color: #fff;
  font-size: 32px;
  line-height: 51px;
  opacity: 0.3;
  position: absolute;
  width: 52px;
  z-index: 1;
}
.post-navigation .page-numbers {
  display: inline-block;
  line-height: 1;
  margin: 0 0.7368421053em 0 -0.7368421053em;
  padding: 0.8157894737em 0.7368421053em 0.3947368421em;
  text-transform: uppercase;
}
.post-navigation .current {
  display: inline-block;
  font-weight: 700;
}
.post-navigation .prev,.post-navigation .next {
  background: #1a1a1a;
  color: #fff;
  display: inline-block;
  height: 52px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  width: 52px;
  z-index: 2;
}
.post-navigation .prev:before,.post-navigation .next:before {
  font-size: 32px;
  height: 53px;
  line-height: 52px;
  position: relative;
  width: 53px;
}
.post-navigation .prev:hover,.post-navigation .prev:focus,.post-navigation .next:hover,.post-navigation .next:focus {
  background: #007acc;
  color: #fff;
}
.post-navigation .prev:focus,.post-navigation .next:focus {
  outline: 0;
}
.post-navigation .prev {
  right: 54px;
}
/*my account address button css*/
header.woocommerce-Address-title.title a,a.added_to_cart.wc-forward{
  background-color: #21286A;
  border-radius: 30px !important;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold !important;
  text-decoration: none !important;
  padding: 12px 20px !important;
}
a.added_to_cart.wc-forward:hover,header.woocommerce-Address-title.title a:hover,#tag-cloud-sec .tag-cloud-link:hover,.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover:hover{
  background: #74CAF9 !important;
  color: #000;
}
#tag-cloud-sec .tag-cloud-link {
  font-size: 16px !important;
  padding: 10px;
  margin: 10px;
  display: inline-block;
  text-transform: capitalize;
  background-color: #21286A;
  border-radius: 30px !important;
  color: #ffffff !important;
}
#tag-cloud-sec ul{
  display: flex;
  justify-content: center;
}
a.added_to_cart.wc-forward{
  margin-left: 10px !important;
}
li.wc-block-grid__product{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 13px;
  max-width: 22% !important;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover{
  background-color: #000 !important;
}
.wc-block-cart__submit-container{
  position: static !important;
}
.wp-block-woocommerce-cart.alignwide{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media screen and (max-width:600px) {
  li.wc-block-grid__product {
    max-width: 80% !important;
  }
.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
  #tag-cloud-sec .tag-cloud-link{
    padding: 5px;
    font-size: 14px !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 1000px){
  li.wc-block-grid__product{
    max-width: 100% !important;
  }
  .wc-block-grid__products{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991px){
      .woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2{
        float: none;
        width: 100%;
      }
  }
/*remove cart css*/
a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 30px !important;
}
a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:hover {
  background: #000 !important;
}
.wc-block-grid__product-title{
  border-bottom: none;
}
span.woocommerce-Price-amount.amount{
  font-size: 14px;
}
li.wc-block-grid__product{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 13px;
  max-width: 22% !important;
}
@media screen and (max-width:767px) {
  li.wc-block-grid__product {
    max-width: 80% !important;
    flex: 100% !important;
  }
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
  .wc-block-grid__products{
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px){
  li.wc-block-grid__product{
    max-width: 100% !important;
  }
  .wc-block-grid__products{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 50px !important;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1080px){
  .wc-block-grid__products{
    padding: 0px 34px !important;
  }
}
/*------------- WOOCOMMERCE CSS --------------*/
.woocommerce .woocommerce-breadcrumb,.woocommerce .woocommerce-breadcrumb a{
  color: #151821;
}
.widget_product_search button{
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 18px 15px 14px;
  background: #000;
  font-weight: bold;
  color: #fff;
  border: none;
  width: 100%;
}
.woocommerce .star-rating span, .woocommerce p.stars a{
  color: #feaf18;
}
.woocommerce .products .star-rating{
  font-size: 15px !important;
}
.woocommerce div.product .woocommerce-product-rating{
  margin-bottom: 5px;
}
.woocommerce span.onsale {
  top: 15px !important;
  border-radius: 5px;
  min-height: 2em;
  min-width: 4em;
  line-height: 2;
  left: 8px !important;
  right: auto !important;
  background: #21286A;
  color: #fff;
}
.woocommerce div.product span.onsale{
  left: 20px !important;
  right: auto !important;  
  top: 20px !important;
}
h2.woocommerce-loop-product__title {
  font-size: 18px !important;
  padding: 0px 0 10px 0 !important;
  font-weight: 500;
}
.woocommerce div.product .product_title {
  font-size: 25px;
}
.woocommerce div.product p.price, .woocommerce div.product span.price,.woocommerce ul.products li.product .price {
  color: #000;
  font-size: 16px;
  margin-top:0px;
}
del span.woocommerce-Price-amount.amount bdi {
  color: #000;
}
.woocommerce div.product .product_title,.woocommerce div.product p.price, .woocommerce div.product span.price{
  margin-bottom: 5px;
}
.woocommerce .quantity .qty {
  width: 5em;
  padding: 7px;
  border: solid 2px #000;
  color: #000;
}
.woocommerce div.product form.cart div.quantity {
  margin-right: 10px;
}
.col-1,.col-2 {
  max-width: 100%;
}
nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}
nav.woocommerce-MyAccount-navigation ul li {
  padding: 12px 20px;
  margin-bottom: 10px;
  background: #21286A;
  color: #fff;
}
nav.woocommerce-MyAccount-navigation ul li:hover{
  background: #21286A;
  color: #333029 !important;
}
nav.woocommerce-MyAccount-navigation ul li a{
  color: #fff;
  text-decoration: none !important;
  font-weight: 600;
}
.woocommerce .woocommerce-ordering select {
  padding: 5px;
  font-size: 12px;
  background: #fff;
}
span.posted_in {
  display: block;
  margin-top: 10px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 22%;
  display: inline-block;
  margin: 5px;
}
.woocommerce-message,.woocommerce-info{
  border-top-color: #21286A;
}
.woocommerce-message::before,.woocommerce-info::before{
  color: #21286A;
}
.related.products ul li {
  width: 29% !important;
}
.woocommerce #comments p{
  float: none;
  margin-top: 0px !important;
}
.woocommerce #comments ol li{
  padding: 0 !important;
}
.woocommerce input#password{
  border: 1px solid #bcbcbc;
}
.woocommerce ul.products li.product .button {
  margin-top: 5px;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table {
  border-color: 1px solid rgba(0,0,0,.1);
}
.woocommerce .select2-container--default .select2-selection--single , .woocommerce input#billing_phone{
  padding: 10px;
  border-radius: 0px;
  border: 1px solid #bcbcbc;
}
.woocommerce .select2-container--default .select2-selection--single{
  padding: 10px 10px 30px 10px;
}
.woocommerce .select2-container .select2-selection--single, .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}
.woocommerce #payment{
  margin: 0 0 30px 0;
}
.woocommerce ul.products li.product .button, .woocommerce a.added_to_cart.wc-forward{
  margin-top: 5px;
  border-radius: 6px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
  width: 115px !important;
  padding: 7px 0px 7px 8px !important;
  margin: 0px 10px 0px 0 !important;
}
.woocommerce ul.products li.product a{
  text-decoration: none !important;
}
.woocommerce td.product-name a {
  text-decoration: none !important;
}
.form-row.place-order .woocommerce-privacy-policy-text p {
  color: #000;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 15px !important;
}
.woocommerce-product-details__short-description{
  display: none;
}
.wishlist_table .product-stock-status span.wishlist-in-stock {
    color: #21286A;
}
header.woocommerce-Address-title.title{
  display: inline-grid;
  margin-bottom: 20px;
}
/*cart and checkout css*/
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity{
  background: #000 !important;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .wc-block-components-totals-coupon__button{
  background: #21286A;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px;
  border: none !important;
  padding: 10px;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover, .wc-block-components-checkout-place-order-button:hover{
  background: #21286A;
  color: #fff !important;
}
.wp-block-woocommerce-cart .wc-block-cart-items,.wp-block-woocommerce-cart-order-summary-block, .wp-block-woocommerce-checkout-order-summary-block{
  border: 1px solid #dee2e6!important;
  padding: 10px;
}
.wp-block-woocommerce-cart .wc-block-cart-items__header-image, .wc-block-cart-items__header-total{
  padding: 10px !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container{
  margin-top: 20px;
}
.wp-block-woocommerce-cart .wc-block-components-product-badge{
  background: #21286A;
  color: #fff !important;
  padding: 10px !important;
  margin-bottom: 10px;
  margin-top:10px ;
}
a.wc-block-components-product-name, .wc-block-components-product-name{
  font-size: 22px !important;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.wc-block-components-order-summary-item__quantity{
  background: #21286A;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right:0% !important;
}
.wp-block-woocommerce-cart.alignwide, .wp-block-woocommerce-checkout.alignwide.wc-block-checkout{
  margin-right: auto !important;
  margin-left: auto !important;
}
/* emty cart */
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale{
  padding: 5px 10px !important;
  background: #21286A !important;
  color: #fff !important;
  border-color: #21286A !important;
  border-radius: 0px !important;
  font-size: 14px !important;
  top: 5px !important;
  right: 5px !important;
  left: auto !important;
  margin: -0.5em -0.5em 0 0 !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title{
  font-size: 22px !important;
  color: #000 !important;
  font-weight: 600;
}
.wp-block-woocommerce-empty-cart-block a.wc-block-grid__product-link{
  text-decoration: none !important;
}
.wp-block-woocommerce-empty-cart-block a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  padding: 10px 12px;
  border-radius: 30px !important;
  font-size: 16px;
}
.wp-block-woocommerce-empty-cart-block span.woocommerce-Price-amount.amount{
  font-size: 16px;
}
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading.has-text-align-center{
  margin: 10px 0;
}

/*------------------RESPONSIVE MEIDA-------------------*/
@media screen and (max-width: 1000px){
  .menubar .nav ul li a:focus,  a.closebtn.mobile-menu:focus{
    outline: 2px solid #1858cc;
  }
  .toggle-nav {
    display: none;
    position: relative;
    cursor: pointer;
  }
  .toggle-nav i {
    font-size: 20px;
    color: #fff;
    padding: 11px 12px;
    background: #21286A;
  }
  .toggle-nav button {
    border: none;
    padding: 0;
  }
  .sidenav, .left-menu {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: -110%;
    overflow-x: hidden; 
    overflow-y: scroll;
    background: #fff ;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    cursor: zoom-in;
  }
  .sidenav.show, .left-menu.show{
    visibility: visible;
    top:0%;
  }
  .sidenav .closebtn, .left-menu .closebtn {
    position: absolute;
    right: 25px;
    font-size: 36px;
    display: block !important;
    color: #000;
    padding: 0;
    top:0;
  }
  .sidenav #site-navigation {
    width: 100%;
  }
  .left-menu ul li, .left-menu ul li a {
    color: #000;
  }
  .left-menu ul li:hover {
    background: transparent;
  }
  .toggle-nav{
    display: block;
    margin: 5px 0px 5px 0;
  }
  /* Legacy mobile navigation overridden by modern wdm-drawer */
  .toggle-nav {
    display: none;
  }
  .admin-bar #mySidenav{
    margin-top: 0px;
  }
  #slider .inner_carousel p{
    display: none;
  }
  #footer td, #sidebar td, #footer th{
    padding: 2px;
  }
}
@media screen and (max-width:720px) {
  #sidebar h3, #sidebar .wp-block-search .wp-block-search__label{
    margin: 0px auto 10px auto;
  }
  #slider .inner_carousel p.slider-text, .slide-search{
    display: none;
  }
  #slider .carousel-caption h1{
    font-size: 20px;
    margin: 10 0 0px;
  }
  .products li, .related.products ul li {
    width: 100% !important;
  }
  .admin-bar .home-page-header {
    margin-top: 0;
  }
  #slider .carousel-caption {
    text-align: center;
    left: 10% !important;
    right: 10%;
    top: 55%;
    background: unset;
  }
  #slider .inner_carousel h1{
    margin-bottom: 0px;
  }
  #slider .inner_carousel p{
    display: none;
  }
  #slider .slider-btn a{
    padding: 8px 20px;
  }
  #slider a.carousel-control-prev{
    left: 0;
    right: auto !important;
    transform: none;
    width: 30px;
    margin: 0;
  }
  #slider a.carousel-control-next{
    left: auto;
    right: 0;
    transform: none;
    width: 30px;
  }
  .popular-cat-btn{
    text-align: center !important;
  }
  .main-header input[type="search"]{
    width: 78%;
  }
  button.product-btn,.product-cat{
    width: 100%;
  }
  .social-media .widget{
    margin-bottom: 0 !important;
  }
  .social-media .custom-social-icons {
    right: 6px;
    bottom: 10px;
  }
  .middle-header input[type="search"]{
    width: 75%;
  }
  .search-icon {
    padding: 14px;
  }
  #slider .inner_carousel h1 a{
    font-size: 20px;
    line-height: 30px;
  }
  #slider .inner_carousel h1{
    margin-bottom: 10px;
   }
  .catgory-box{
    padding: 20px 10px;
  }
  hr.cat-features {
    margin: 1rem 0 !important;
  }
  .copyright p, .copyright .widget{
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .features-button{
    display: flex;
    justify-content: center;
  }
  #slider .inner_carousel{
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px){
  .admin-bar #mySidenav {
    margin-top: 0;
  }
  #about-us-section .abt-icon-img {
    padding: 25px;
  }
  #about-us-section .abt-icon-img:after {
    left: 8%;
  }
  #topbar .box-topbar .row.inner-topbar {
    margin: 10px 0;
  }
  .top-header{
    padding-top: 24px !important;
  }
  .main-header input[type="search"]{
    width: 70%;
  }
  #slider .carousel-caption {
    top: 40%;
    left: 12%;
    right: 14%;
    padding: 16px;
  }
  button.product-btn,.product-cat{
    width: 100%;
  }
  .main-header button[type="submit"] {
    padding: 0px 20px;
  }
  #slider .carousel-caption {
    top: 50%;
  }
  .middle-header input[type="search"]{
    width: 85%;
  }
  .page-template-custom-home-page .topbar{
    padding: 26px 0px;
  }
  #slider .inner_carousel h1 a{
    font-size: 35px;
  }
  .catgory-box{
    padding: 20px 10px;
  }
  hr.cat-features {
    margin: 1rem 0 !important;
  }
  #popular-job-section h3 a{
    font-size: 20px;
  }
  #popular-job-section h3 {
    padding:0;
  }
  .marketing, .apllicant, .prices{
    font-size: 15px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1024px){
  p.site-title, .logo h1 {
    font-size: 22px;
  }
  #slider .carousel-caption{
    right: 25%;
  }
  .main-header input[type="search"]{
    width: 82%;
  }
  .middle-header input[type="search"]{
    width: 80%;
  }
  .middle-header .cart-value, .middle-header .wishlist-counter {
    display: none;
  }
  .main-navigation a{
    padding: 12px 18px;
  }
  .catgory-box {
    padding: 20px 10px;
  }
  .header-button a{
    padding: 11px 12px;
  }
  #footer td, #sidebar td, #footer th{
    padding: 5px;
  }
}



/*Demo*/
.top-section {
  background-color: #D4D0E463;
}


.weblizar-heading-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25em;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 12px;
  letter-spacing: -0.02em;
}

.weblizar-heading-desc {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

.login_button {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s ease;
  line-height: 1;
  padding: 14px 32px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.login_button:hover {
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  color: #ffffff !important;
}

.home-page-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.home-page-header .topbar {
  padding: 12px 0;
}
.home-page-header .site-title a {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.home-page-header .wdm-topbar {
  padding: 10px 0;
}
.home-page-header .wdm-topbar-badge {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.home-page-header .wdm-header-cta-btn {
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
.home-page-header .wdm-header-cta-btn:hover {
  opacity: 0.92;
}
.home-page-header .wdm-header-auth-link {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.home-page-header .wdm-header-auth-link:hover {
  color: #0f172a;
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* ==========================================================================
   TOPBAR & HEADER NAVIGATION (MODERN UI/UX)
   ========================================================================== */

.home-page-header .wdm-topbar {
  padding: 12px 0;
}

/* Brand Logo & Site Title */
.home-page-header .site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.home-page-header .site-logo img,
.home-page-header .site-logo .custom-logo,
.home-page-header .custom-logo-link img,
.home-page-header img.custom-logo {
  max-height: 48px !important;
  width: auto !important;
  max-width: 180px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}
.wdm-drawer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wdm-drawer-logo img,
.wdm-drawer-logo .custom-logo,
.wdm-drawer-logo .custom-logo-link img {
  max-height: 36px !important;
  width: auto !important;
  max-width: 130px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}
.home-page-header .site_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
}
.home-page-header .site-title {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}
.home-page-header .site-title a {
  color: #0f172a;
  font-size: clamp(17px, 3.5vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.home-page-header .site-title a:hover {
  color: var(--wdm-primary, #4f46e5);
  text-decoration: none;
}
.home-page-header .site-description {
  color: #64748b;
  font-size: 12px;
  margin: 2px 0 0 0;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .home-page-header .site-logo img,
  .home-page-header .site-logo .custom-logo,
  .home-page-header .custom-logo-link img,
  .home-page-header img.custom-logo {
    max-height: 38px !important;
    max-width: 140px !important;
  }
  .home-page-header .site-description {
    display: none !important;
  }
}
/* Topbar Badge & Action Buttons */
.home-page-header .wdm-topbar-badge {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 9999px;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.home-page-header .wdm-topbar-badge i {
  color: #6366f1;
  font-size: 11px;
}
.home-page-header .wdm-header-cta-btn {
  background-color: var(--wdm-primary, #4f46e5);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}
.home-page-header .wdm-header-cta-btn:hover {
  background-color: #4338ca !important;
  color: #ffffff !important;
  text-decoration: none;
}
.home-page-header .wdm-header-auth-link {
  color: #475569;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.home-page-header .wdm-header-auth-link:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: #cbd5e1;
  text-decoration: none;
}

/* WordPress Admin Bar Responsive (Only active when admin bar exists) */
@media screen and (max-width: 782px) {
  html:has(#wpadminbar) {
    margin-top: 46px !important;
  }
  #wpadminbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
  }
}

/* Responsive Navigation Controller */
.wdm-desktop-nav {
  display: none !important;
}
.wdm-mobile-toggle-wrap {
  display: flex !important;
  align-items: center;
}

@media (min-width: 992px) {
  .wdm-desktop-nav {
    display: block !important;
  }
  .wdm-mobile-toggle-wrap,
  .wdm-drawer.sidenav,
  .wdm-drawer-backdrop {
    display: none !important;
  }
}

/* Desktop Menu List (>= 992px) */
.wdm-desktop-menu-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wdm-desktop-menu-list li {
  position: relative;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wdm-desktop-menu-list > li > a {
  color: #475569;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.12s ease, background-color 0.12s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .wdm-desktop-menu-list > li > a {
    font-size: 14px;
    padding: 7px 12px;
  }
}
.wdm-desktop-menu-list li.menu-item-has-children > a::after,
.wdm-desktop-menu-list li.page_item_has_children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 9px;
  margin-left: 6px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.15s ease;
  display: inline-block;
}
.wdm-desktop-menu-list li.menu-item-has-children:hover > a::after,
.wdm-desktop-menu-list li.page_item_has_children:hover > a::after,
.wdm-desktop-menu-list li.menu-item-has-children.open > a::after {
  transform: rotate(180deg);
  color: var(--wdm-primary, #4f46e5);
}
.wdm-desktop-menu-list > li > a:hover,
.wdm-desktop-menu-list > li > a:focus-visible,
.wdm-desktop-menu-list li.current_page_item > a,
.wdm-desktop-menu-list li.current-menu-item > a {
  background-color: #f1f5f9 !important;
  color: #0f172a !important;
}
.wdm-desktop-menu-list li.current_page_item > a,
.wdm-desktop-menu-list li.current-menu-item > a {
  color: var(--wdm-primary, #4f46e5) !important;
  font-weight: 600;
}

/* Desktop Dropdown Floating Cards */
.wdm-desktop-nav ul.sub-menu,
.wdm-desktop-nav ul.children,
.wdm-desktop-menu-list ul.sub-menu,
.wdm-desktop-menu-list ul.children {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 210px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.03) !important;
  padding: 5px !important;
  list-style: none !important;
  z-index: 1000 !important;
  margin: 0 !important;
}
/* Invisible Bridge to prevent hover dead-zones between parent and card */
.wdm-desktop-nav ul.sub-menu::before,
.wdm-desktop-nav ul.children::before,
.wdm-desktop-menu-list ul.sub-menu::before,
.wdm-desktop-menu-list ul.children::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  display: block;
}
.wdm-desktop-nav li.menu-item-has-children:hover > ul.sub-menu,
.wdm-desktop-nav li.menu-item-has-children:hover > ul.children,
.wdm-desktop-nav li.menu-item-has-children:focus-within > ul.sub-menu,
.wdm-desktop-nav li.menu-item-has-children.open > ul.sub-menu,
.wdm-desktop-menu-list li.menu-item-has-children:hover > ul.sub-menu,
.wdm-desktop-menu-list li.menu-item-has-children:hover > ul.children,
.wdm-desktop-menu-list li.menu-item-has-children:focus-within > ul.sub-menu,
.wdm-desktop-menu-list li.menu-item-has-children.open > ul.sub-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.wdm-desktop-menu-list ul.sub-menu li,
.wdm-desktop-menu-list ul.children li {
  display: block;
  width: 100%;
  margin: 1px 0;
  padding: 0;
}
.wdm-desktop-menu-list ul.sub-menu li a,
.wdm-desktop-menu-list ul.children li a {
  display: block;
  padding: 7px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569 !important;
  border-radius: 6px;
  text-transform: capitalize;
  background: transparent;
  transition: background-color 0.12s ease, color 0.12s ease;
  white-space: nowrap;
  text-decoration: none;
}
.wdm-desktop-menu-list ul.sub-menu li a:hover,
.wdm-desktop-menu-list ul.children li a:hover {
  background: #f8fafc !important;
  color: #0f172a !important;
}

/* Mobile Toggle Button (< 992px) */
.wdm-toggle-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.15s ease;
}
.wdm-toggle-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.wdm-toggle-btn i {
  color: #334155;
  font-size: 14px;
  padding: 0;
  background: transparent;
}

/* Mobile Drawer & Backdrop (< 992px) */
body.wdm-nav-open {
  overflow: hidden;
}
.wdm-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999998;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.wdm-drawer-backdrop.show {
  display: block;
}
.wdm-drawer.sidenav {
  position: fixed !important;
  top: 0 !important;
  right: -340px !important;
  left: auto !important;
  width: 300px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: #ffffff !important;
  padding: 0 !important;
  z-index: 999999 !important;
  box-shadow: -4px 0 24px rgba(15, 23, 42, 0.08), -1px 0 0 rgba(15, 23, 42, 0.04) !important;
  transition: right 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}
.wdm-drawer.sidenav.show {
  right: 0 !important;
}
.wdm-drawer-header {
  flex-shrink: 0;
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
  margin: 0;
}
.wdm-drawer-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.wdm-drawer-logo img {
  max-height: 24px;
  width: auto;
}
.wdm-drawer-close {
  color: #64748b;
  font-size: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}
.wdm-drawer-close:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Mobile Drawer Body & Sections */
.wdm-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  padding: 14px 16px;
  margin: 0;
  box-sizing: border-box;
}
.wdm-drawer-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 8px;
  padding-left: 4px;
  display: flex;
  align-items: center;
}

/* Mobile Navigation Container */
.wdm-mobile-nav {
  width: 100%;
  margin: 0 0 8px 0;
}

/* Mobile Menu List */
.wdm-mobile-menu-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.wdm-mobile-menu-list li {
  display: block;
  width: 100%;
  margin: 2px 0;
  padding: 0;
  border: none !important;
  list-style: none !important;
}
.wdm-mobile-menu-list li::before,
.wdm-mobile-menu-list li a::before,
.wdm-mobile-menu-list ul.sub-menu li::before,
.wdm-mobile-menu-list ul.sub-menu li a::before,
.wdm-desktop-menu-list li::before,
.wdm-desktop-menu-list li a::before,
.wdm-desktop-menu-list ul.sub-menu li::before,
.wdm-desktop-menu-list ul.sub-menu li a::before,
.main-navigation ul li ul li a::before {
  content: none !important;
  display: none !important;
}
.wdm-mobile-menu-list li > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  color: #334155 !important;
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 8px;
  text-align: left;
  white-space: normal;
  text-decoration: none;
  background: transparent;
  transition: background 0.12s ease, color 0.12s ease;
}
.wdm-mobile-menu-list li > a:hover,
.wdm-mobile-menu-list li.open > a {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  font-weight: 600;
}
.wdm-mobile-menu-list li.menu-item-has-children > a::after,
.wdm-mobile-menu-list li.page_item_has_children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #94a3b8;
  margin-left: auto;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.15s ease;
}
.wdm-mobile-menu-list li.open > a::after {
  transform: rotate(180deg);
  color: #4f46e5;
}

/* Mobile Accordion Submenu */
.wdm-mobile-menu-list ul.sub-menu,
.wdm-mobile-menu-list ul.children {
  display: none;
  list-style: none !important;
  position: static !important;
  background: transparent !important;
  border: none !important;
  border-left: 1.5px solid #e2e8f0 !important;
  border-radius: 0 !important;
  padding: 3px 0 3px 10px !important;
  margin: 3px 0 5px 12px !important;
  box-shadow: none !important;
  top: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.wdm-mobile-menu-list ul.sub-menu ul.sub-menu {
  margin-left: 8px !important;
  border-left-color: #cbd5e1 !important;
}
.wdm-mobile-menu-list ul.sub-menu li,
.wdm-mobile-menu-list ul.children li {
  border: none !important;
  margin: 1px 0 !important;
  padding: 0 !important;
}
.wdm-mobile-menu-list ul.sub-menu li a,
.wdm-mobile-menu-list ul.children li a {
  display: block !important;
  padding: 7px 10px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  text-transform: capitalize !important;
  border-radius: 6px !important;
  border: none !important;
  text-decoration: none !important;
  transition: background-color 0.12s ease, color 0.12s ease !important;
}
.wdm-mobile-menu-list ul.sub-menu li a:hover,
.wdm-mobile-menu-list ul.children li a:hover {
  background: #f8fafc !important;
  color: #0f172a !important;
}

/* Drawer Instant Demo Roles */
.wdm-drawer-roles-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.wdm-drawer-role-form {
  margin: 0;
  width: 100%;
}
.wdm-drawer-role-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  text-align: left;
  cursor: pointer;
  transition: all 0.12s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.wdm-drawer-role-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}
.wdm-drawer-role-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wdm-drawer-role-action {
  font-size: 11.5px;
  font-weight: 600;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
}

/* Mobile Drawer Footer */
.wdm-drawer-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 14px 16px;
  border-top: 1px solid #f1f5f9;
  background: #fafafa;
  width: 100%;
  box-sizing: border-box;
}
.wdm-mobile-cta-btn {
  background: #4f46e5;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
  width: 100%;
}
.wdm-mobile-cta-btn:hover {
  background: #4338ca;
  color: #ffffff !important;
}
.wdm-mobile-secondary-link {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}
.wdm-mobile-secondary-link:hover {
  color: #0f172a;
  text-decoration: underline;
}

/* ==========================================================================
   UNIVERSAL DEMO MANAGEMENT DESIGN SYSTEM (SHARED COMPONENTS)
   ========================================================================== */

.wdm-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.wdm-btn-primary {
    background: var(--wdm-primary, #4f46e5);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.2);
    transition: background 0.15s ease, transform 0.1s ease;
}
.wdm-btn-primary:hover {
    background: #4338ca !important;
    color: #ffffff !important;
    text-decoration: none;
}

.wdm-btn-outline {
    background: #ffffff;
    color: #334155 !important;
    font-size: 14.5px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.15s ease;
}
.wdm-btn-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a !important;
    text-decoration: none;
}

.wdm-btn-video {
    background: #f8fafc;
    color: #1e293b !important;
    font-size: 14.5px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.15s ease;
}
.wdm-btn-video:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a !important;
}
.wdm-btn-video i {
    color: #ef4444;
}

/* Showcase Window Frame */
.wdm-showcase-container {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}
.wdm-window-frame {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.wdm-window-header {
    background: #f8fafc;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}
.wdm-window-dots {
    display: flex;
    gap: 6px;
}
.wdm-window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.wdm-dot-close { background: #ef4444; }
.wdm-dot-min { background: #f59e0b; }
.wdm-dot-max { background: #10b981; }
.wdm-window-url {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 12px;
    color: #64748b;
    font-family: monospace;
}
.wdm-window-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Role Sandbox Cards Grid */
.wdm-section {
    padding: 68px 0 80px 0;
    background: #ffffff;
}
.wdm-header-block {
    margin-bottom: 40px;
}
.wdm-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--wdm-primary, #4f46e5);
    margin-bottom: 8px;
}
.wdm-section-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 auto 12px auto;
}
.wdm-section-subhead {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.wdm-grid-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.wdm-card-role {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.wdm-card-role:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.wdm-card-role-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.wdm-role-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}
.wdm-role-tag {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 9999px;
}
.wdm-role-name {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}
.wdm-credentials-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #475569;
    margin-bottom: 18px;
}
.wdm-credentials-chip code {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 1px 5px;
    border-radius: 4px;
    color: #0f172a;
    font-family: monospace;
    font-size: 12px;
    font-weight: 600;
}
.wdm-form-login {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
}
.wdm-card-role .wdm-launch-btn,
button.wdm-launch-btn {
    width: 100% !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: background 0.15s ease, transform 0.15s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.wdm-card-role .wdm-launch-btn:hover,
button.wdm-launch-btn:hover {
    background: var(--wdm-primary, #4f46e5) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}
/* Hero Ambient Glow & Pulse */
.wdm-hero {
    position: relative;
    padding: 60px 0 50px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    overflow: hidden;
}
.wdm-hero-ambient-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 100vw;
    height: 550px;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.08) 40%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}
.wdm-hero-content {
    position: relative;
    z-index: 1;
}
.wdm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.wdm-live-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}
.wdm-live-pulse::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    background: rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    animation: wdm-pulse-ring 1.8s infinite cubic-bezier(0.45, 0, 0.55, 1);
}
@keyframes wdm-pulse-ring {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}
.wdm-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 auto 16px auto;
    letter-spacing: -0.03em;
    max-width: 860px;
    padding: 0 12px;
}
.wdm-subhead {
    font-size: clamp(15px, 2vw, 17.5px);
    line-height: 1.6;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 32px auto;
    padding: 0 16px;
}
.wdm-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
    padding: 0 12px;
}
@media (max-width: 575px) {
    .wdm-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .wdm-hero-actions .wdm-btn-primary,
    .wdm-hero-actions .wdm-btn-video,
    .wdm-hero-actions .wdm-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Floating Feature Chips */
.wdm-floating-chip {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    pointer-events: none;
    animation: wdm-float-anim 4s ease-in-out infinite alternate;
}
.wdm-chip-1 {
    top: 15%;
    left: -24px;
    animation-delay: 0s;
}
.wdm-chip-2 {
    bottom: 20%;
    right: -24px;
    animation-delay: 1.5s;
}
@keyframes wdm-float-anim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}
@media (max-width: 1100px) {
    .wdm-floating-chip {
        display: none !important;
    }
}

/* Stats & Trust Bar */
.wdm-stats-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 38px 0;
}
.wdm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.wdm-stat-item {
    padding: 8px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    .wdm-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e2e8f0;
    }
}
.wdm-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
}
.wdm-stat-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    margin: 0;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .wdm-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .wdm-stats-bar {
        padding: 28px 0;
    }
    .wdm-stat-number {
        font-size: 24px;
    }
    .wdm-stat-label {
        font-size: 12.5px;
    }
}

/* Interactive Feature Tabs Section */
.wdm-features-section {
    padding: 72px 0 80px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.wdm-tabs-nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    padding: 0 12px;
}
.wdm-tabs-nav {
    background: #f1f5f9;
    padding: 5px;
    border-radius: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    border: 1px solid #e2e8f0;
    max-width: 100%;
}
.wdm-tab-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.15s ease;
}
@media (min-width: 1200px) {
    .wdm-tab-btn {
        padding: 9px 18px;
    }
}
@media (max-width: 575px) {
    .wdm-tabs-nav {
        width: 100%;
        padding: 4px;
        gap: 3px;
    }
    .wdm-tab-btn {
        font-size: 12.5px;
        padding: 7px 10px;
        flex: 1 1 auto;
        justify-content: center;
    }
}
.wdm-tab-btn:hover {
    color: #0f172a;
}
.wdm-tab-btn.active {
    background: #ffffff;
    color: #0f172a !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    font-weight: 700;
}
.wdm-tab-content-panel {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
}
.wdm-tab-content-panel.active {
    display: block;
    animation: wdm-fade-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wdm-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.wdm-tab-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.3;
}
.wdm-tab-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}
.wdm-tab-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wdm-tab-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}
.wdm-bullet-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0e7ff;
    color: var(--wdm-primary, #4f46e5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}
.wdm-tab-image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    background: #ffffff;
}
.wdm-tab-screenshot {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .wdm-tab-content-panel {
        padding: 24px 20px;
    }
    .wdm-tab-heading {
        font-size: 20px;
    }
    .wdm-tab-desc {
        font-size: 14px;
    }
}

/* Video Lightbox Modal */
.wdm-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.wdm-video-modal.show {
    display: flex;
}
.wdm-video-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: wdmModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wdmModalPop {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.wdm-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
}
.wdm-video-responsive iframe,
.wdm-video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.wdm-video-close-btn {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}
.wdm-video-close-btn:hover,
.wdm-video-close-btn:focus {
    background: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
    outline: none;
}
@media (max-width: 768px) {
    .wdm-video-modal {
        padding: 16px;
    }
    .wdm-video-close-btn {
        top: -12px;
        right: -8px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
@media (max-width: 575px) {
  .home-page-header .wdm-topbar {
    padding: 8px 0;
  }
  .home-page-header .site-title a {
    font-size: 17px;
  }
}
.custom-logo {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.sell h5 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumb_align{
  text-align: right;
  	position: relative;
}
.breadcrumbs_div {
  background-position: center top;
	background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.vw-page-title.breadcrumbs{
	color:#fff;
	position: relative;
}

.breadcrumbs_div {
	position: relative;
}

.breadcrumbs_div::before {
content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(0,0,0,.2);
}
/*Demo*/


@media screen and (min-width: 1025px) and (max-width: 1200px){
  .prices .col-lg-4{
    width: 100%;
  }
}



@media (max-width: 900px) {  
  .sell {
    position: initial;
  }
  .logo.row {
    margin-top: 10px;
  }

  .breadcrumb_align{
    text-align: left;
  }
  
  
  }
  
  @media (max-width: 999px) {  
     .custom-col-12 {
      width:25%;
     }
      .custom-col-4 {
      width:25%;
     }
      .custom-col-8 {
      width:25%;
     }
      .custom-col-3 {
      width:25%;
     }
  }
  
   @media (max-width: 600px) {  
     .custom-col-12 {
      width:100%;
     }
      .custom-col-4 {
     width: 33.3333333333%;
     }
      .custom-col-8 {
     width: 66.6666666667%;
     }
      .custom-col-3 {
      width:25%;
     }
  }

/* ==========================================================================
   MODERN SEMANTIC HTML5 FORM NORMALIZATION
   Clean, modern baseline for all HTML5 controls with zero vendor overrides
   ========================================================================== */

/* Page Canvas Ground & Native Theme Form Cards */
#maincontent.site-main {
  background-color: #f8fafc;
  min-height: calc(100vh - 250px);
}

.comment-respond,
.post-password-form,
.search-form-wrap {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 24px;
  max-width: 1080px;
  margin: 0 auto 24px auto;
}

/* Page Titles */
.site-main h1,
.entry-title,
.page-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  padding: 0;
  text-align: left;
  line-height: 1.25;
}

/* Modern Normalized Inputs, Dropdowns & Textareas */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
select,
textarea {
  display: block;
  width: 100%;
  height: 42px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  color: #1e293b;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea {
  height: auto;
  min-height: 90px;
  resize: vertical;
}

/* Modern Custom Select Dropdown Indicator */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-right: 36px;
  cursor: pointer;
}

/* Focus State */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  border-color: var(--wdm-primary, #4f46e5);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.14);
  outline: 0;
}

/* Modern Form Labels */
label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

/* Modern Checkboxes & Radios */
input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--wdm-primary, #4f46e5);
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 6px 0 0;
  cursor: pointer;
}

/* Modern Color Picker */
input[type="color"] {
  width: 64px;
  height: 42px;
  padding: 3px 5px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
}

/* Modern Range Slider */
input[type="range"] {
  accent-color: var(--wdm-primary, #4f46e5);
  cursor: pointer;
  height: 6px;
  border-radius: 4px;
  background: #e2e8f0;
}

/* Modern File Upload Input */
input[type="file"] {
  font-size: 13px;
  color: #475569;
}

input[type="file"]::file-selector-button {
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.15s ease;
}

input[type="file"]::file-selector-button:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

/* Disabled & Readonly Input States */
input:disabled,
select:disabled,
textarea:disabled,
button:disabled,
[disabled] {
  opacity: 0.65;
  cursor: not-allowed !important;
  background-color: #f8fafc !important;
  border-color: #e2e8f0 !important;
  color: #94a3b8 !important;
}

input:read-only:not([type="button"]):not([type="submit"]):not([type="reset"]),
textarea:read-only {
  background-color: #fafbfc;
  border-color: #e2e8f0;
  color: #475569;
}

/* Required Asterisks */
abbr.required,
span.required,
.required {
  color: #ef4444 !important;
  font-weight: 700 !important;
  margin-left: 2px;
  text-decoration: none !important;
}

/* Modern Buttons (Primary, Secondary & Reset) */
input[type="submit"],
button[type="submit"]:not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle),
.btn-primary,
.button-primary,
.button.button-primary {
  background-color: var(--wdm-primary, #4f46e5);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

input[type="submit"]:hover,
button[type="submit"]:not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle):hover,
.btn-primary:hover,
.button-primary:hover,
.button.button-primary:hover {
  background-color: #4338ca;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

/* Secondary & Reset Buttons */
input[type="reset"],
input[type="button"],
button[type="button"]:not(.btn-primary):not(.button-primary):not(.btn):not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle),
.btn-secondary,
.button:not(.button-primary):not(.btn-primary):not(.btn):not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle) {
  background-color: #f8fafc;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease-in-out;
}

input[type="reset"]:hover,
input[type="button"]:hover,
button[type="button"]:not(.btn-primary):not(.button-primary):not(.btn):not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle):hover,
.btn-secondary:hover,
.button:not(.button-primary):not(.btn-primary):not(.btn):not(.wdm-launch-btn):not(.wdm-drawer-role-btn):not(.wdm-drawer-close):not(.responsivetoggle):hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

/* Minimal 404 Page (Responsive & Accessible) */
.wdm-404-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}
.wdm-404-minimal {
  padding: 20px 16px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.wdm-404-code {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--wdm-primary, #4f46e5);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wdm-404-heading {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.wdm-404-desc {
  font-size: clamp(14px, 3.5vw, 15px);
  color: #64748b;
  margin: 0 0 24px;
  line-height: 1.5;
}
.wdm-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wdm-primary, #4f46e5);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.1s ease;
  min-height: 44px;
  touch-action: manipulation;
}
.wdm-404-btn:hover {
  background: #4338ca !important;
  color: #ffffff !important;
}
.wdm-404-btn:active {
  transform: scale(0.98);
}

/* Responsive Footer Bar (#footer-2) */
#footer-2 {
  background: #000000;
  padding: 14px 0;
  color: #ffffff;
}
.wdm-footer-brand-link {
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}
.wdm-footer-brand-link:hover {
  opacity: 1;
  text-decoration: underline !important;
}
.wdm-footer-contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  font-size: 13px;
}
.wdm-footer-contact-item {
  color: #ffffff !important;
  opacity: 0.85;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s ease;
}
.wdm-footer-contact-item:hover {
  opacity: 1;
  color: #ffffff !important;
}
.wdm-footer-sep {
  color: #64748b;
}

@media (max-width: 991px) {
  .wdm-footer-contact-links {
    justify-content: center;
    margin-top: 6px;
    gap: 8px 14px;
  }
}

@media (max-width: 575px) {
  .wdm-footer-contact-links {
    flex-direction: column;
    gap: 8px;
  }
  .wdm-footer-sep {
    display: none !important;
  }
}

/* Empty Shortcode Entity & Utility Guard */
.wlsm-shortcode-entity:empty,
.wlsm-shortcode-entity > div:empty,
.wlsm-exam-time-table:empty,
.wlsm-exam-admit-card:empty,
.wlsm-exam-result:empty,
.wlsm-certificate:empty,
.wlsm-invoice-history:empty,
.wlsm:empty,
.wlsm > div:empty,
.wlsm .clearfix,
div.clearfix {
  display: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Lessons & Homework Search Form Alignment */
.wlsm-search-input-group {
  display: flex !important;
  align-items: stretch !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}
.wlsm-search-input-group input.wlsm-search-input {
  height: 42px !important;
  padding: 8px 14px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  margin: 0 !important;
  flex: 1 !important;
  box-sizing: border-box !important;
}
.wlsm-search-input-group button.wlsm-search-btn {
  height: 42px !important;
  padding: 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  border: none !important;
  background-color: var(--wdm-primary, #4f46e5) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  transition: background 0.15s ease !important;
}
.wlsm-search-input-group button.wlsm-search-btn:hover {
  background-color: #4338ca !important;
  color: #ffffff !important;
}

/* Chat Message Bar Alignment */
#wlsm-send-message-form {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}
#wlsm-send-message-form textarea#wlsm-chat-input {
  height: 42px !important;
  min-height: 42px !important;
  max-height: 120px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  margin: 0 !important;
  flex: 1 !important;
  resize: none !important;
  box-sizing: border-box !important;
}
#wlsm-send-message-form button#wlsm-send-btn {
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  margin: 0 !important;
  border: none !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}