/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

:root {
    --wblr-font: 'DM Sans', sans-serif;
    --wblr-reey-font: "reeyregular";
    --wblr-gray: #696e77;
    --wblr-gray-rgb: 105, 110, 119;
    --wblr-white: #ffffff;
    --wblr-white-rgb: 255, 255, 255;
    --wblr-base: #015fc9;
    --wblr-primary: #015ec9de;
    --wblr-primary-rgb: #015ec9de;
    --wblr-base-rgb: 1, 95, 201;
    --wblr-black: #16243d;
    --wblr-black-rgb: 22, 36, 61;
    --wblr-extra: #f2f5f9;
    --wblr-extra-rgb: 242, 245, 249;
    --wblr-bdr-color: #e0e4e8;
    --wblr-bdr-color-rgb: 224, 228, 232;
    --wblr-bdr-radius: 10px;
    --wblr-letter-spacing: -0.02em;

    /* theme color */
    --color-brown: #ed7428;
    --color--light-pink: #dbbdd4;
    --color--blue: #2e4ea6;
    --color--pink: #9d6da6;
    --color--light-brown: #fcc795;
    --color--seagreen: #2f709e;

    --gradient-1: linear-gradient(135deg, #2D5A87 0%, #4A7C8A 100%);
    --gradient-2: linear-gradient(135deg, #2D5A87 0%, #4a90e2 100%);

}

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Nuosu+SIL&family=Open+Sans:wght@300;400;500;600;700;800&family=Raleway:wght@100;200;300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* 
font-family: 'Jost', sans-serif;
font-family: 'Nuosu SIL', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;


*/

body,
body p {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
.widget-title,
.count {
    font-family: 'Nuosu SIL', serif;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--wblr-font);
    color: var(--wblr-gray);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
    word-break: break-word;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--wblr-gray);
    text-decoration: none !important;
    transition: all 0.5s;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    text-decoration: none !important;
    transition: all 0.5s;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--wblr-black);
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 15px;
    line-height: 1.5;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--wblr-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Navigations 
--------------------------------------------------------------*/

.navbar .content-center {
    justify-content: space-between;
    width: 100%;
}

nav.navbar.navbar-fixed {
    animation-duration: 0.6s;
    animation-fill-mode: both;
    will-change: transform;
    transition: all 0.6s ease;
    /* background-color: var(--color-primary); */
    position: fixed;
    top: 0;
    padding: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 9;
    transition: all 0.6s ease;
}

header:has(.navbar-fixed) ~ .weblizar-hero-slider-wrapper,
header:has(.navbar-fixed) ~ .thim-hero-sections {
    margin-top: 88px;
}

@keyframes swingInX {
    0% {
        transform: perspective(400px) rotateX(-90deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes swingOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
    }

    100% {
        transform: perspective(400px) rotateX(-90deg);
    }
}

.offcanvas-body .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}

nav.navbar {
    transform-origin: top;
    backface-visibility: hidden;
    animation-name: swingInX;
    transition: all 0.6s ease;
    padding: 0;
    min-height: 88px;
}

.scrollUp.navbar {
    animation-name: swingOutX;
    backface-visibility: hidden;
}

.navbar {
    background-color: var(--wblr-primary);
    position: relative;
}

.navbar .container {
    position: relative;
    z-index: 1;
}

.navbar:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background-color: #fff;
    clip-path: polygon(0 0, 85% 0, 100% 99%, 0% 100%);
}

.main-header .navbar-nav .nav-link {
    color: #fff !important;
    opacity: 1;
    padding: 10px 0;
    margin: 0 20px;
    font-weight: inherit;
    font-size: 16px;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    margin: 0;
    margin-top: 12px;
}

/* .navbar .container li.dropdown .dropdown-toggle {
    display: flex;
} */
/* 
li.dropdown>a.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    border: none;
    font-weight: 900;
    transition: all 0.35s ease-in-out;
    
}

.main-header .navbar-nav .nav-link {
    color: #fff!important;
    opacity: 1;
    padding: 30px 0;
    margin: 0 14px;
    font-weight: inherit;
    font-size: 16px;
} */

a.nav-link {
    position: relative;
}

.main-header .navbar .navbar-nav a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    /* bottom: -6px; */
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.main-header .navbar .dropdown-item {
    padding: 10px 20px;
}

.main-header .navbar .navbar-nav a:hover:before,
.main-header .navbar .navbar-nav li:hover>a:before,
.main-header .navbar .navbar-nav .active:before {
    visibility: visible;
    transform: scaleX(1);
}

.main-header .navbar .navbar-nav .dropdown .dropdown-menu {
    background-color: #2172d0;
}

.main-header .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    background-color: #2172d0;
}

.main-header .navbar .dropdown-item {
    padding: 10px 20px;
    color: #ffff;
    background-color: #2172d0;
}

.nav__right .theme-btn {
    margin-right: 15px;
    height: fit-content;
}

.top__contact a {
    display: block;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    grid-gap: 7px;
    line-height: 36px;
}

.top__contact a i {
    /* border-right: 1px solid #2172d0; */
    padding-right: 10px;
    margin-right: 4px;
    background-color: var(--wblr-primary);
    width: 33px;
    /* height: 30px; */
    padding: 2px 10px;
    margin: a;
    text-align: center;
    line-height: 31px;
    text-align: center;
    display: flex;
    /* align-items: stretch; */
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    border-right: 10px;
}

.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
    position: relative;
}

a.navbar-brand {
    max-width: 100px;
    display: block;
}

.wb-lognin-signup {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    grid-gap: 7px;
}

.wb-lognin-signup a {
    height: fit-content;
    padding: 7px 15px;
    font-weight: 500;
}

.wb-lognin-signup a i {
    border-right: 1px solid;
    padding-right: 10px;
    margin-right: 5px;
}

.section-heading .sec-title {
    margin: 0;
    color: var(--wblr-black);
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    letter-spacing: var(--wblr-letter-spacing);
    text-transform: capitalize;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

/* sidebar */

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background-color: var(--wblr-primary);
}

.offcanvas-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    position: absolute;
    left: -14px;
    color: #fff;
    top: 15px;
    background-color: #fff;
    opacity: 1;
}

.offcanvas-header .navbar-brand {
    max-width: 100px;
}

header .navbar-dark .navbar-toggler {
    color: #ffffff;
    border: 0;
    opacity: 1;
}

header .navbar-toggler {
    background-color: #236bff !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
}

header .navbar-toggler:hover {
    background-color: #1a52cc !important;
    transform: scale(1.05);
}

header .navbar-toggler .ham {
    font-size: 22px !important;
    color: #ffffff !important;
}

.offcanvas li.nav-item.dropdown .dropdown-menu {
    position: inherit !important;
    transform: translate(0px) !important;
}

.sidebar__info {
    margin-top: 30px;
}

.sidebar__info .ab-social {
    padding: 18px 0;
    border-bottom: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
    margin-bottom: 30px;
}


/*--------------------------------------------------------------
home Banner
--------------------------------------------------------------*/

.banner__container {
    position: relative;
    margin: 0 15px !important;
    z-index: 1;
    overflow: hidden;
    padding-left: calc(50% - 600px);
}

.hero-banner {
    /* height: 90vh; */
    position: relative;
    display: block;
    background-color: var(--wblr-black);
    padding: 100px 0 100px;
    overflow: hidden;
    z-index: 1;
}

.hero-banner-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/shape/shape-01.png);
    opacity: 0.05;
    /* z-index: -1; */
}

.hero-banner-shape-2 {
    position: absolute;
    right: 596px;
    top: -215px;
    z-index: 2;
}

.hero-banner-shape-2 img {
    width: auto;
}

.hero-banner-shape-3 {
    position: absolute;
    top: -260px;
    right: 150px;
}

.hero-banner-shape-3 img {
    width: auto;
}

.hero-banner-shape-4 {
    position: absolute;
    top: -81px;
    right: 0;
}

.hero-banner-shape-4 img {
    width: auto;
}

.hero-banner-shape-5 {
    position: absolute;
    bottom: -215px;
    right: 0;
    z-index: 1;
}

.hero-banner-shape-5 img {
    width: auto;
}

.hero-banner-shape-6 {
    position: absolute;
    bottom: -295px;
    right: 160px;
}

.hero-banner-shape-6 img {
    width: auto;
}

.hero-banner-img {
    position: relative;
}

.hero-banner-img img {
    width: 100%;
    margin-top: 40px;
    width: 100%;
}


/* funfact section */

h2.banner__title {
    color: #fff;
    border-left: 7px solid var(--wblr-primary);
    padding-left: 24px;
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 12px;
}

p.banner__text {
    font-size: 20px;
    color: #a1a1a1;
    line-height: 1.5;
}

.funfact__col {
    position: relative;
    /* margin: 15px 0; */
    text-align: center;
    padding: 40px 15px;
    background-color: var(--wblr-primary);
    overflow: hidden;
    border-radius: 15px;
}

.funfact__col p {
    font-size: 18px;
    color: #ccc;
}

.count {
    color: #fff;
    /* margin: 12px 0px 0; */
    font-size: 45px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.banner__content .col-lg-6.col-md-6 {
    padding: 7px;
}

.funfact_icon {
    color: #c3c3c3;
    /* height: 80px; */
    font-size: 119px;
    /* width: 80px; */
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: -6px;
    opacity: 0.2;
    bottom: -32px;
}

.hero-banner .content-center,
header .content-center {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.content-center {
    display: flex;
}

/* ===================== */
.thim-blocks-counter {
    position: relative;
    text-align: center;
    width: 180px;
    height: 200px;
    margin: 20px auto;
    border-radius: 0 0 100px 100px;
    /* shield shape */
    color: #fff;
    padding: 30px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 10;
}

.hover-semicircle {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 70px;
    opacity: 0;
    transition: opacity 0.4s, top 0.4s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thim-blocks-counter:hover .hover-semicircle {
    opacity: 1;
    /* top: -8px; */
}

.hover-semicircle-icon {
    font-size: 14px;
    color: #f2f2f2;
}

.hover-semicircle-icon img {
    /* font-size: 40px; */
    height: 60px;
    width: 60px;
    transition: transform 0.3s ease-in-out,
}

.thim-blocks-counter:hover img {
    /* transform: scale(1.2) rotate(5deg); */
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
    opacity: 0.2;
    z-index: 0;
}

.hover-box {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: rgba(23, 79, 148, 0.8);
    line-height: normal;
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100px 100px 0 0;
    /* half circle shape */
    transition: bottom 0.5s ease;
    padding: 15px;
}



.thim-blocks-counter:hover .hover-box {
    bottom: 0;
}

/* Top half circle icon */
.hover-icon-top-wrapper {
    background: white;
    width: 70px;
    height: 35px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hover-icon-top {
    font-size: 1.5rem;
    color: #1f6ecf;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.5s ease;
}

.thim-blocks-counter:hover {
    border: 2px 2px 2px solid #1f6ecf;
    box-shadow: 0 12px 30px rgba(37, 76, 216, 0.796);
    transform: translateY(-8px);
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.counter-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.yellow {
    background: var(--color--light-brown);
}

.blue {
    background: var(--color--blue);
}

.light-pink {
    background: var(--color--light-pink);
}

.pink {
    background: var(--color--pink);
}

.green {
    background: var(--color--seagreen);
}

.brown {
    background: var(--color-brown);
}

/* Counter Wrapper Flex */
.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .counter-wrapper {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .counter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .thim-blocks-counter {
        width: 80%;
        max-width: 250px;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .thim-blocks-counter {
        width: 90%;
        padding: 20px;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 1rem;
    }

    .hover-semicircle {
        width: 60px;
        height: 60px;
    }

    .hover-semicircle-icon i {
        font-size: 3rem;
    }

    .hover-box {
        font-size: 0.85rem;
        padding: 10px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .thim-blocks-counter:hover .hover-box {
        bottom: 0;
    }

    .thim-blocks-counter:hover .hover-semicircle {
        opacity: 1;
    }
}

.thim-blocks-counter.active .hover-box {
    bottom: 0;
}

.thim-blocks-counter.active .hover-semicircle {
    opacity: 1;
}


/* ========================================= */


/* Main container
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 60px 20px;
  background: transparent;
}

Individual Stat Box 
.stat-box {
  text-align: center;
}

Diamond Box 
.diamond {
  width: 120px;
  height: 120px;
  background: white;
  transform: rotate(45deg);
  position: relative;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

 Icon Section 
.diamond .icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  background-color: #ccc;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

Number Section 
.diamond .number {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

Label below diamond 
.stat-box .label {
  margin-top: 30px;
  background-color: #000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  font-weight: 500;
}

 Custom Colors 
.pink .icon, .pink .label {
  background-color: #e91e63;
}

.purple .icon, .purple .label {
  background-color: #9c27b0;
}

.blue .icon, .blue .label {
  background-color: #2196f3;
}

.green .icon, .green .label {
  background-color: #8bc34a;
} */


/* ========================================= */

/* about section */

.ab-img {
    position: relative;
}

.ab-img img {
    border-radius: 5px;
}

.ab1 {
    position: absolute;
    right: 27px;
    top: 0;
    z-index: -1;
    -webkit-animation: rotation 20s infinite linear;
}

.ab2 {
    position: absolute;
    left: -42px;
    bottom: -26px;
    z-index: -1;
    animation: halfBounce2 2s infinite;
}

.listing-item {
    margin: 0;
    padding: 0;
}

.listing-item li {
    list-style: none;
    position: relative;
    font-size: 16px;
    line-height: 26px;
    padding-top: 7px;
    color: #081845;
    font-weight: 700;
    margin: 0 0 27px;
    padding-left: 50px;
}

.listing-item li i {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 42px;
    background: var(--wblr-primary);
    font-size: 14px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes halfBounce2 {

    0%,
    100% {
        transform: scale(.9)
    }

    50% {
        transform: scale(1)
    }
}


/* 
our classes */

.py-80 {
    padding: 80px 0;
}


/* section  title */

.section-heading {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.sec-title {
    /* margin-bottom: 15px; */
    /* font-size: 47px; */
    /* line-height: 1.1; */
    /* text-transform: capitalize; */
    /* font-weight: bold; */
}

.sub-title {
    font-size: 16px;
    line-height: 20px;
    color: var(--wblr-primary);
    text-transform: uppercase;
    margin: 0 0 17px;
}

.our-services .sub-title {
    background-color: #fdfdfd;
    width: fit-content;
    padding: 0 15px;
    border-radius: 15px;
}

.sub-title span {
    width: 81px;
    height: 3px;
    display: inline-block;
    background: var(--wblr-primary);
    margin-right: 15px;
    position: relative;
    top: -3px;
    overflow: hidden;
}

.sub-title span:after {
    width: 100%;
    border: 14px solid #fff;
    height: 10px;
    bottom: -3px;
    left: 0;
}

.sub-title span:before {
    width: 80%;
    border: 3px solid rgb(255, 255, 255);
    height: 19px;
    bottom: -3px;
    left: -30px;
    z-index: 9;
}

.sub-title span:before,
.sub-title span:after {
    content: '';
    /* position: absolute; */
    left: 0;
    bottom: 0px;
    height: -1px;
    animation: xRay 2s linear infinite;
    transition: all 0.5s;
}

@keyframes xRay {
    0% {
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
    }

    50% {
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    }

    100% {
        clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
    }
}


/* @keyframes sweep {
    from {
        left: 0;
    }
    to {
        transform: translateX(100%);
    }
} */

.section-heading.text-white .sec-title {
    color: #fff;
}

.section-heading.text-white .sec-desc {
    color: #fff;
}


/* button style */

.theme-btn {
    display: inline-block;
    height: 50px;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    line-height: .8;
    color: #fff;
    overflow: hidden;
    width: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    /* font-weight: 500; */
    padding: 12px 25px;
    border-radius: 5px;
    z-index: 1;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.theme-btn::after,
.fm-more::after {
    content: '';
    position: absolute;
    background-color: var(--wblr-black);
    left: auto;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    transition: width .3s cubic-bezier(.25, .8, .25, 1) 0s;
    -moz-transition: width .3s cubic-bezier(.25, .8, .25, 1) 0s;
    -webkit-transition: width .3s cubic-bezier(.25, .8, .25, 1) 0s;
    border-radius: 5px;
}

.fm-more::after {
    background-color: var(--wblr-black);
    z-index: 1;
}

.theme-btn.btn-dark {
    background: var(--wblr-black);
    border: 0;
}

.theme-btn.btn-dark::after {
    background: var(--wblr-white);
}

.theme-btn.btn-dark.h_primary::after {
    background: var(--wblr-primary);
}

body .theme-btn.btn-dark.h_primary {
    color: var(--wblr-white);
    text-decoration: none;
    line-height: 1.2;
    font-size: 16px;
}

.theme-btn.btn-dark:hover {
    color: var(--wblr-black);
}

.theme-btn:hover {
    color: var(--wblr-black);
}

.to_top:hover:before {
    height: 100%;
    top: auto;
    bottom: 0;
}

.theme-btn:hover::after,
.fm-more:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
    width: 100%;
    left: 0;
    right: auto;
    z-index: -1;
}

.fm-more:hover {
    color: #fff;
}

.fm-more::after {
    background: var(--wblr-black) !important;
    height: 100%;
    top: auto;
    bottom: 0;
    width: 100%;
    left: 0;
    right: auto;
    z-index: -1;
}

i.fas.fa-arrow-right.fa-fw {
    margin-left: 3px;
}

.portfolio-row .fm-more,
.portfolio-row .gallery-btn {
    background-color: #ffffff;
    color: #333;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    height: 35px;
    width: 39px;
    line-height: 36px;
}

.gallery_btn_group a {
    border-radius: 3px;
}

.portfolio-row .prodct-item {
    opacity: 1;
    clip-path: none;
    transition: all ease .6s;
}

.portfolio-row .prodct-item:hover .theme-overlay {
    opacity: 1;
    clip-path: none;
    transition: all ease .6s;
}

.portfolio-row .prodct-item .theme-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px dashed #ffffff6b;
    outline-offset: -29px;
    transition: all ease .6s;
    opacity: 0;
    clip-path: none;
}

.portfolio-row .product-content h5 a,
.portfolio-row .product-content h3 a {
    color: #fff;
    font-size: 22px;
}

.gallery_btn_group {
    display: flex;
    justify-content: space-around;
    max-width: 108px;
    margin: 0 auto;
}


/*** 
=============================================
    Float Bob Y Animation Css
=============================================
***/

@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


/* our service section */

.our-services {
    position: relative;
    display: block;
    background-color: var(--wblr-black);
    padding: 120px 0 90px;
}

.our-services .container {
    z-index: 2;
    position: relative;
}

.our-services::after {
    background-image: url(../img/shape/shape-01.png);
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position: center;
    opacity: 0.02;
}

.services-col {
    position: relative;
    display: block;
    background-color: #1c2a44;
    border-radius: var(--wblr-bdr-radius);
    text-align: center;
    padding: 30px 15px 30px;
    border-bottom: 3px solid transparent;
    margin-bottom: 30px;
    transition: all 500ms ease;
    overflow: hidden;
}

.services-col:hover {
    border-bottom: 3px solid var(--wblr-primary);
    transform: translateY(-10px);
    background-color: #111d32;
}

.services-col:before {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    visibility: hidden;
    transform: scaley(0);
    transition: all 0.3s ease-in-out 0s;
}

.services-col:hover:before {
    content: "";
    position: absolute;
    opacity: 1;
    visibility: visible;
    transform: scaley(1);
    transition: all 0.3s ease-in-out 0s;
}

.icon-circle {
    font-size: 31px;
    line-height: 100px;
    margin: 0 auto 28px !important;
    color: #fff;
    display: block;
    width: 90px;
    box-shadow: 0 0 0 11px var(--wblr-primary-rgb);
    text-align: center;
    background-color: var(--wblr-primary);
    height: 90px;
    border-radius: 50%;
    margin-bottom: 14px;
    transition: all .3s ease;
}

.service-content {
    color: #fff;
    min-height: 140px;
}

.service-content h4 {
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.2s ease-in-out 0s;
}

.service-content p {
    font-size: 15px;
    color: #cad8f3;
    line-height: 1.54;
    transition: all 0.2s ease-in-out 0s;
}

.services-col:hover .service-title {
    color: var(--wblr-black);
    transition: all 0.2s ease-in-out 0s;
}

.services-col:hover p {
    color: #121314;
    transform: scaley(1);
    transition: all 0.2s ease-in-out 0s;
}


/*--- our products ---*/

section.our-theme {
    background-color: #fff;
}

.our-plugin,
.our-theme,
.theme_items {
    position: relative;
    background: #F0F4F9;
    padding: 80px 15px;
    overflow: hidden;
}

.prodct-item {
    position: relative;
    margin: 21px 15px 95px;
    /* box-shadow: 3px 12px 10px #9b959533; */
    box-shadow: 4px 4px 15px rgb(0 0 0 / 15%);
    border-radius: 15px;
    background: #fff !important;
}

.prodct-item[data-label] {
    /* left: 12px; */
    position: z;
}

.prodct-item[data-label]::before {
    position: absolute;
    top: 56px;
    right: -0.5rem;
    content: "";
    background: #ff0b65;
    height: 28px;
    width: 28px;
    transform: rotate(45deg);
}

.prodct-item[data-label]::after {
    position: absolute;
    content: attr(data-label);
    top: 31px;
    right: -14px;
    z-index: 9;
    padding: 0.5rem;
    width: 10rem;
    background: #ff0b65;
    color: white;
    text-align: center;
    font-family: "Roboto", sans-serif;
    box-shadow: 4px 4px 15px rgb(255 11 101 / 45%);
}

.prodct-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transform: scale(1.0);
    transition: all 0.4s ease-in-out 0s;
}

.prodct-item:hover img {
    transform: scale(1.1);
}

.prodct-item .product-content {
    visibility: visible;
    opacity: 1;
    width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    bottom: -48px;
    box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 3%);
    -webkit-box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 3%);
    -ms-box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 3%);
}

.prodct-item .theme-overlay {
    opacity: 0;
    transition: all 0.8s;
    transform: scale(1, 0);
    transform-origin: bottom;
}

.prodct-item:hover .theme-overlay {
    opacity: 1;
    transition: all 0.8s;
    transform: scale(1, 1);
}

.product-content {
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 9;
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.product-content h5,
.product-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-content h5 a,
.product-content h3 a {
    color: var(--wblr-black);
}

.product-content p {
    font-size: 14px;
    margin-bottom: 0;
}

.fm-more {
    width: 80px;
    font-weight: bold;
    height: 45px;
    color: #ffffff;
    font-size: 20px;
    border-radius: 3px;
    line-height: 47px;
    text-align: center;
    top: 0;
    bottom: 0;
    position: relative;
    flex: none;
    margin-left: 8px;
}

.product-slider.owl-carousel {
    position: relative;
}

.product-slider.owl-carousel .owl-nav {
    width: 100%;
}

.product-slider.owl-carousel .owl-nav button {
    position: absolute;
    left: 40px;
    top: 45%;
    text-align: center;
    z-index: 5;
    font-size: 20px;
    line-height: 64px;
    width: 60px;
    height: 60px;
    background: var(--wblr-base);
    color: #fff;
    border: none;
    outline: none;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    border-radius: 50%;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-slider.owl-carousel:hover .owl-nav button {
    left: 50px;
    visibility: visible;
    color: #fff;
    opacity: 1;
    /* background-color: #1f71cf; */
    background: var(--wblr-base);
}

.product-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 40px;
}

.product-slider.owl-carousel:hover .owl-nav button.owl-next {
    left: auto;
    right: 50px;
}

.product-slider.owl-carousel .owl-nav button:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: var(--wblr-black) !important;
    border-radius: 50%;
    text-align: center;
    width: 0;
    height: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-slider.owl-carousel .owl-nav button:hover:after {
    width: 100%;
    height: 100%;
}

.prodct-item:hover .theme-overlay {
    opacity: 1;
    clip-path: polygon(0 35%, 100% 45%, 100% 100%, 0 100%);
    transition: all ease .6s;
}

.prodct-item .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 265px !important;
    padding-top: 10px !important;
    margin: 15px 15px 0 15px !important;
    background-color: #fff !important;
}

.prodct-item .img-box img {
    width: 100%;
    height: 100% !important;
    object-fit: contain !important;
    background-color: #fff;
}

.theme-overlay .btn {
    color: #fff;
    margin: 5px;
    height: auto;
    padding: 14px 18px;
    font-size: 14px;
    display: block;
}

.theme-overlay {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--wblr-primary);
    top: 0;
    padding-top: 0;
    padding-bottom: 25px;
    bottom: 0;
    display: flex;
    z-index: 9;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    -moz-transition: all ease .6s;
    -o-transition: all ease .6s;
    transition: all ease .6s;
}

.content-center.w-100 {
    justify-content: space-between;
    align-items: center;
}

.weblizar_products-col:hover .theme-overlay {
    bottom: 20px;
    background: rgba(7, 7, 7, .8);
    opacity: 1;
    -moz-opacity: 1;
    top: 0;
}


/* gallery section  */

.filter-button-group li.nav-link:hover,
.filter-button-group li.nav-link.active {
    background-color: var(--wblr-primary);
    transition: all 0.4s;
    color: #fff;
}

.filter-button-group li.nav-link {
    color: var(--wblr-black);
    display: flex;
    align-items: center;
    padding: 6px 20px;
    border-radius: 40px;
    box-shadow: 2px 2px 5px #0000000d;
    font-size: 18px;
    margin: 3px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.4s;
}

.portfolio-row .prodct-item .product-content {
    position: unset;
}

.portfolio-row .theme-overlay {
    padding-bottom: 30px;
}

.portfolio-row .prodct-item {
    position: relative;
    margin: 15px 0;
}

.portfolio-row .prodct-item .product-content {
    opacity: 0;
    text-align: center;
    transition: all 0.8s;
    transform: scale(1, 0);
    transform-origin: center;
    background-color: transparent;
    color: #fff;
}

.portfolio-row .prodct-item:hover .product-content {
    opacity: 1;
    transition: all 0.8s;
    transform: scale(1, 1);
    bottom: 0;
}

.our-plugin .prodct-item {
    position: relative;
    margin: 21px 15px 95px !important;
}


/*--- Testimonial Section ---*/

.test__bg {
    background-image: url(../img/bg-02.jpg);
    padding: 123px 0 172px;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.test__bg .container {
    position: relative;
    z-index: 9;
}

.test__bg:after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #0e3876;
}

.ts-author {
    position: absolute;
    left: 0;
    right: 0;
    top: -70px;
    padding: 40px 20px 40px 120px;
    z-index: 2;
    margin: auto;
    background: #F0F4F9;
    border-radius: 5px;
    width: 70%;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
    -ms-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .05);
}

.ts-item p {
    margin: 0 0 21px;
}

.testi_content h3 {
    margin-bottom: 0;
}

.testi_content::after {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--wblr-base);
    position: absolute;
    right: -80px;
    bottom: -80px;
    content: '';
    box-shadow: -11px 0px 0px #015fc961;
}

.ts-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    top: 25px;
}

.testi_content {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #eff4f8;
    padding: 0px 21px 24px;
    margin-top: -8px;
}

.testi__container {
    padding: 0 0 0px;
    margin-top: -135px;
    z-index: 3;
}

.testimonial-section {
    position: relative;
    padding: 0 0 120px;
}

.testi__container {
    padding: 0 0 0px;
    margin-top: -135px;
    z-index: 3;
}

.ts-item {
    position: relative;
    background: #F0F4F9;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 70px;
    padding-top: 110px;
    overflow: visible;
}

.testi_content i {
    font-size: 22px;
    color: #fff;
    line-height: 22px;
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 1;
}

.testimonial-slider .ts-item img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 25px;
    border: 4px solid #015fc9;
}

.ts-item h5,
.ts-item h3 {
    font-size: 20px;
    margin: 0 0 0px;
}

.ts-item span {
    display: block;
    margin: 0;
    font-style: italic;
    font-size: 16px;
}

.testimonial-slider.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -117px;
    z-index: 99;
}

body .testimonial-slider.owl-carousel .owl-nav button {
    width: 67px;
    height: 67px;
    background: var(--wblr-base);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 67px;
    z-index: 99;
    margin: 0 0 0 30px;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
    /* color: #fff; */
    /* background-color: var( --wblr-base); */
}

.testimonial-slider.owl-carousel .owl-nav button.disabled {
    background: rgb(255 255 255);
    color: var(--wblr-base);
}

.testimonail-videos-inner iframe {
    width: 90% !important;
    height: 315px;
    padding: 30px;
    border-radius: 14px;
    padding: 0;
    margin: 22px 30px -41px 30px;
    position: relative;
    z-index: 99;
}

.testimonail-videos-inner .testi_content {
    padding-top: 50px !important;
}


/*--- Footer ---*/

.footer {
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--wblr-black);
    padding: 60px 0 0;
    background-image: url(../img/3.png);
}

.footer .widget {
    position: relative;
    margin: 60px 0 45px;
}

footer .widget .widget-title {
    font-size: 20px;
    line-height: .8;
    text-transform: uppercase;
    position: relative;
    margin: 13px 0 37px;
    border: none;
    color: #fff;
    padding-left: 18px;
}

footer .widget .widget-title:after {
    position: absolute;
    left: 0;
    top: -4px;
    content: '';
    width: 4px;
    height: 23px;
    background: var(--wblr-base);
}

.about-widget {
    position: relative;
    padding-right: 20px;
}

.about-widget img {
    max-width: 100%;
    height: auto;
}

.about-widget p {
    color: rgba(255, 255, 255, .8);
    margin: 20px 0 20px;
}

.ab-social {
    position: relative;
}

.ab-social a {
    display: inline-block;
    width: 37px;
    height: 37px;
    background: var(--wblr-black);
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    margin-right: 8px;
}

.ab-social a:hover {
    color: #fff;
}

.ab-social a:last-child {
    margin-right: 0;
}

.ab-social a:hover,
.about-widget .ab-social a:hover {
    background: var(--wblr-base);
    color: #fff;
    transition: all 0.5s;
}

.about-widget .ab-social a {
    background-color: #ffffff24;
    color: #fff;
    transition: all 0.5s;
}

footer .widget ul {
    margin: 0;
    padding: 0;
    line-height: .8;
}

footer .widget ul li {
    list-style: none;
    display: block;
    position: relative;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 36px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2px;
}

footer .widget ul li a {
    display: inline-block;
    color: inherit;
    transition: all 0.5s;
}

footer .widget ul li:hover a {
    color: var(--wblr-base);
}

footer .widget ul li:before {
    content: '--';
    color: rgba(255, 255, 255, .8);
    letter-spacing: 0;
    margin-right: 8px;
    transition: all ease 300ms;
}

footer .widget ul li:hover:before {
    margin-right: 13px;
    color: var(--wblr-base);
}

.fs-info {
    position: relative;
    padding-left: 30px;
    /* margin: 9px 0 44px; */
    padding: 5px 0;
    display: flex;
    grid-gap: 11px;
    align-items: center;
}

.fs-info i {
    font-size: 16px;
    color: #fff;
    /* position: absolute; */
    /* left: 0; */
    /* top: 5px; */
    width: 33px;
    height: 33px;
    text-align: center;
    border-radius: 5px;
    padding: 7px;
    background-color: #0154b8;
}

.fs-info p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
}

.fs-info p a {
    color: inherit;
}

.fs-info p a:hover {
    color: var(--wblr-base);
}

.footer .widget .mc4wp-form {
    width: 100%;
}

.footer .widget .mc4wp-form input[type="email"] {
    border-radius: 50px;
}

.footer .widget .mc4wp-form button {
    width: 60px;
    border-radius: 50px;
    padding: 0;
}

.footer .widget .mc4wp-form button i {
    margin: 0;
}

.widget_mc4wp_form_widget p {
    color: rgba(255, 255, 255, .8);
    margin: 53px 0 25px;
}

.copyright {
    position: relative;
    padding: 22px 0 27px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
}

.copyright p a {
    color: inherit;
}

.copyright p a:hover {
    color: var(--wblr-base);
}

.copyright ul {
    margin: 0;
    padding: 0;
    text-align: right;
}

.copyright ul li {
    list-style: none;
    position: relative;
    margin: 0 0 0 20px;
    display: inline-block;
}

.copyright ul li:after {
    position: absolute;
    right: -13px;
    top: 10px;
    height: 12px;
    width: 2px;
    content: '';
    background: rgba(255, 255, 255, .5);
}

.copyright ul li:last-child:after {
    display: none;
}

.copyright ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, .5);
}

.copyright ul li a:hover {
    color: var(--wblr-base);
}


/* product_android */

.product_android {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-left: calc(50% - 600px);
}

.product_android:after {
    background-image: url(../img/shape/shape-07.png);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 50%;
    height: 100%;
    /* background-color: Var( --wblr-black); */
    border-radius: 53px 0px 0px 54px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}


/* ******laravel******* */

.product_laravel {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.product_laravel:after {
    background-image: url(../img/shape/shape-bg-1.png);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 53px 0px 0px 54px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.product_laravel .prodct-item .product-content {
    position: initial;
    background-color: var(--wblr-primary);
    margin: 15px 15px;
    width: cale(100%-30px);
    width: calc(100% - 40px);
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    /* margin: 0 auto; */
}

.product_laravel .prodct-item .product-content .fm-more {
    background-color: #FFF;
    color: #000;
}

.product_laravel .prodct-item:hover .product-content {
    opacity: 0;
    visibility: hidden;
}

.product_laravel .product-content h5 a,
.product_laravel .product-content h3 a {
    color: #fff;
}

.containe {
    position: relative;
}


/* backto home  */

.back-to-top.show {
    opacity: 1;
}

.back-to-top {
    display: block !important;
    position: fixed;
    z-index: 9;
    color: #fff;
    display: none;
    background-color: var(--wblr-primary);
    color: #fff;
    padding: 7px 15px 7px 15px;
    font-size: 20px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    transition: all 0.5s;
}


/*=================================================
24 :: Template Preloader
=================================================*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body-row {
    display: flex;
    justify-content: space-around;
}

.loader img {
    max-width: 500px;
    margin: auto;
}


/*=================================================
26 :: Page Title Section
=================================================*/

.page-title {
    padding: 100px 0 60px;
    background-image: url(../img/bg-02.jpg);
    background: linear-gradient(-84deg, #0a0c1f00 12%, #0a0c1f00 51%), url(../img/bg-02.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.page-title .bg-animation {
    left: -470px;
    bottom: -495px;
    top: auto;
}

.page-title:after {
    content: "";
    top: 0;
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.5;
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    /* letter-spacing: 4px; */
    font-size: 54px;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
    /* text-transform: uppercase; */
}

.page-title .breadcrumb-item a {
    color: var(--wblr-bdr-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title .breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.53);
    font-weight: bold;
    text-transform: uppercase;
}


/*=================================================
35 :: Page sidebar Section
=================================================*/

.blog-sidebar .btn.btn-primary {
    padding: 10px 15px;
    background-color: var(--color-primary);
    font-size: 20px;
    box-shadow: none;
    color: #ffffff;
    border: 0;
}

.blog-sidebar .btn.btn-primary:hover {
    color: #fff;
}

.post_user_row i {
    padding: 5px;
    margin-right: -6px;
}

.align-self-start {
    max-width: 120px;
}

.blog-sidebar .side_title {
    display: inline-block;
    padding: 15px 15px 15px 0px;
    min-width: 100px;
    font-weight: bold;
    margin-bottom: 0;
    background-color: #ffffff;
}

.categories li:last-child a {
    border: 0;
}

.blog-sidebar .card {
    border: 0;
    margin-top: 60px;
    background: #f2f2f2;
    clear: unset;
    display: flow-root;
}

.blog-sidebar .card-body {
    display: flow-root;
}

.list-categories a.active::before {
    width: 52px;
}

.sidbr-post p a {
    color: #21201f;
}

.regular__price .d-flex {
    align-items: center;
    justify-content: space-evenly;
    margin: 30px 0;
}

.regular__price h5 {
    margin-bottom: 0;
}

.regular__price .theme-btn {}

.regular__price h4 a {
    padding: 12px;
    margin-top: 20px;
    border-radius: 15px 0;
    display: block;
    background: rgba(255, 0, 89, 1);
    background: -webkit-linear-gradient(45deg, rgba(255, 0, 89, 1) 0%, rgba(0, 179, 255, 1) 33%, rgba(255, 0, 89, 1) 66%, rgba(0, 179, 255, 1) 100%);
    background: -moz-linear-gradient(45deg, rgba(255, 0, 89, 1) 0%, rgba(0, 179, 255, 1) 33%, rgba(255, 0, 89, 1) 66%, rgba(0, 179, 255, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(255, 0, 89, 1) 0%, rgba(0, 179, 255, 1) 33%, rgba(255, 0, 89, 1) 66%, rgba(0, 179, 255, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(255, 0, 89, 1) 0%, rgba(0, 179, 255, 1) 33%, rgba(255, 0, 89, 1) 66%, rgba(0, 179, 255, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 0, 89, 1) 0%, rgba(0, 179, 255, 1) 33%, rgba(255, 0, 89, 1) 66%, rgba(0, 179, 255, 1) 100%);
    background-size: 400% 400%;
    -webkit-animation: errorBg 5s linear infinite;
    -moz-animation: errorBg 5s linear infinite;
    animation: errorBg 5s linear infinite;
    color: #fff;
}

@-webkit-keyframes errorBg {
    0% {
        background-position: 100% 0%
    }

    100% {
        background-position: 15% 100%
    }
}

@-moz-keyframes errorBg {
    0% {
        background-position: 100% 0%
    }

    100% {
        background-position: 15% 100%
    }
}

@keyframes errorBg {
    0% {
        background-position: 100% 0%
    }

    100% {
        background-position: 15% 100%
    }
}

ul.Compatible_b_p {
    list-style: none;
    display: flex;
    grid-gap: 8px;
    margin: 15px 0;
    padding: 0;
}

.Compatible_b_p li img {
    max-width: 40px;
    border-radius: 16px;
    background-color: #fff;
    text-align: center;
}

.Compatible_card h5 {
    font-size: 16px;
}

.trustpilot-widget {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--wblr-primary);
    color: #fff;
    border-radius: 6px;
    outline: 1px dashed #ffffff6b;
    outline-offset: -12px;
}

.trustpilot-widget a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    padding: 5px 11px;
}

.trustpilot-widget a i {
    font-size: 22px;
}

.theme-col-inner {
    border: 0;
    display: block;
    height: 464px;
    overflow: hidden;
    position: relative;
    margin: 10px;
    border: 16px solid #020202;
    border-radius: 15px;
    position: relative;
}

.laptop_fram {
    position: relative;
}

.weblizar-feature-margin:nth-child(even) {
    background: #eff4f8;
    padding: 15px 0;
    margin: 20px 0
}

.weblizar-feature-margin:nth-child(odd) {
    background: #f0f0f0;
    padding: 15px 0;
    margin: 20px 0
}

span.weblizar-featured-number {
    font-size: 25px;
    background: #38aafa;
    padding: 1px 12px;
    color: #fff;
    margin-right: 14px;
    float: left
}



/* .laptop_fram::after {
    content: '';
    width: calc(100% + 30px);
    left: 0;
    display: block;
    right: 0;
    bottom: 0;
    transform: translate(-17px, -18px);
    height: 102px;
    background-color: #020202;
    clip-path: polygon(6% 0, 95% 0, 100% 100%, 0% 100%);
    border-radius: -4%;
} */

.theme-col-inner .image-theme-scroll {
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    transition: all 9s ease-out 0s;
}

.theme-col-inner:hover .image-theme-scroll {
    background-position: center 100% !important;
}

.weblizar-product-price-detail {
    grid-gap: 15px;
    align-items: center;
}

.weblizar-product-price-detail .btn {
    text-align: center;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 19px;
    display: block;
    margin: 10px 0;
}

.weblizar-product-price-detail .btn_view {
    background-color: var(--wblr-primary);
    display: block;
    width: 100%;
    padding: 15px;
}

.weblizar-product-price-detail .btn_buy {
    background-color: #e90a4d;
    padding: 15px;
    width: 100%;
}

.item__information p {
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.item__information p:last-child {
    border-bottom: 0;
}

a.wb-btn_thb {
    position: fixed;
    left: -1px;
    width: 45px;
    height: 46px;
    align-items: center;
    z-index: 9;
    justify-content: center;
    display: flex !important;
    align-items: 60px;
    display: block;
    top: 54%;
    background-color: var(--wblr-base);
    text-align: center;
    color: #fff;
    font-size: 19px;
}

a.wb-btn_thb:hover {
    color: #fff;
    background-color: var(--wblr-black);
}

a.theme_right.wb-btn_thb {
    left: auto;
    right: 0;
}


/*--- Pricing Table ---*/

.pricing-section {
    position: relative;
}

.panel-pricing {
    text-align: center;
    outline: 1px dashed #00000026;
    outline-offset: -30px;
    height: 100%;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #0000000a;
    padding: 49px 49px 0;
    /* margin: 0 0 60px; */
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.panel-pricing:after {
    -webkit-transform: scale(.98);
    -moz-transform: scale(.98);
    -ms-transform: scale(.98);
    -o-transform: scale(.98);
    transform: scale(.98);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: url(../img/bg-02.jpg) no-repeat center center / cover;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.panel-pricing:before {
    -webkit-transform: scale(.98);
    -moz-transform: scale(.98);
    -ms-transform: scale(.98);
    -o-transform: scale(.98);
    transform: scale(.98);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 10px;
    background: rgba(8, 24, 69, .9);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.panel-pricing:hover:after,
.panel-pricing:hover:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.panel-pricing .panel-heading i {
    width: 96px;
    height: 96px;
    line-height: 90px;
    font-size: 33px;
    background-color: var(--wblr-base);
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    margin: 0 0 26px;
    position: relative;
    z-index: 3;
    color: #fff;
    line-height: 96px;
    box-shadow: 0px 0px 0px 9px #015fc938;
}

.panel-pricing h3 {
    font-size: 20px;
    /* color: var(--wblr-base); */
    text-transform: initial;
    margin: 0 0 4px;
    font-family: 'Rubik', sans-serif;
    /* font-weight: 500; */
    /* position: relative; */
    /* z-index: 3; */
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.panel-pricing h2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--wblr-base);
    margin: 0 0 10px;
    position: relative;
    z-index: 3;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.panel-pricing h2 strike {
    font-size: 70%;
    opacity: 0.6;
}

.panel-pricing h2 strong sup {
    font-size: 60%;
    opacity: 0.6;
    margin-right: -13px;
    margin-right: -10p !important;
}

.panel-pricing ul {
    margin: 0 0 7px;
    padding: 0;
    /* text-align: left; */
    /* padding-left: 30%; */
    margin-top: 20px;
}

.panel-pricing ul li {
    list-style: none;
    display: block;
    position: relative;
    z-index: 3;
    font-size: 16px;
    color: #081845;
    line-height: 36px;
    font-family: 'Rubik', sans-serif;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.panel-pricing ul li i.fa.fa-check {
    margin-right: 5px;
    font-size: 13px;
}

.panel-pricing:hover ul li::before,
.panel-pricing:hover h5,
.panel-pricing:hover h2,
.panel-pricing:hover h3,
.panel-pricing:hover p,
.panel-pricing:hover ul li {
    color: #fff;
    position: relative;
    z-index: 9;
}

.panel-pricing .grap-btn {
    /* border-radius: 30px; */
    position: relative;
    z-index: 2;
    font-weight: 600;
    /* margin-top: 20px; */
    /* top: 30px; */
    height: 60px;
    padding: 17px 31px;
    background-color: var(--wblr-base);
    color: #fff;
    border: 0;
}

.panel-pricing .grap-btn::before {
    border-radius: 30px;
}

.panel-pricing .grap-btn i {
    margin-left: 24px;
}

.panel-footer {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

h2.bundles-sub-heading {
    max-width: 550px;
    margin: auto;
    padding-bottom: 30px;
    font-weight: bold;
    text-align: center;
}


/* callout-bundle */

.callout-bundle {
    padding-top: 0;
}

.callout-bundle-row {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 30px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-bottom: 4px double;
    border-top: 4px double;
    border-color: var(--wblr-primary);
}

.callout_left h4 {
    font-weight: bold;
    max-width: 756px;
}

.weblizar-contact {
    display: flex;
    grid-gap: 15px;
    padding-bottom: 15px;
    margin: 20px 0;
    border-bottom: 1px dashed #ccc;
}

.weblizar-map {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 5px 7px 14px #00000017;
}

.weblizar-map iframe {
    min-height: 400px;
}

.weblizar-contact .icon {
    width: 50px;
    background-color: var(--wblr-primary);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
}

.weblizar-contact-right h5 {
    margin-bottom: 0px;
    font-size: 18px;
}

.weblizar-contact-right p {
    font-size: 16px;
}

.weblizar-contact.b-0 {
    border: 0;
}

.contact__form {
    background-color: rgb(245 247 249);
    padding: 30px;
    border-radius: 11px;
}

.product_detail_page {
    background-image: url(../img/shape/shape-bg-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.weblizar-contact-page {
    background-image: url(../img/shape/shape-07.png);
    background-size: 44%;
    background-repeat: no-repeat;
    background-position: top right;
}

.wb-product-bundles {
    background-image: url(../img/shape/shape-01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-color: #f3f1f1;
}

h4.contact__title {
    margin-bottom: 20px;
    border-left: 3px double var(--wblr-primary);
    padding-left: 9px;
    font-weight: bold;
}

.row.content-center.p-0.m-0 {
    align-items: center;
}

section#about {
    background-image: url(../img/shape/shape-bg-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


/* Hero Section with Enhanced Animated Background */
#hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    position: relative;

    overflow: hidden;
}

/* Central Light Core */
#hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Connecting Lines and Dots Background */
.network-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    height: 1px;
    transform-origin: left center;
}

.network-line:nth-child(1) {
    width: 200px;
    top: 20%;
    left: 10%;
    transform: rotate(25deg);
    animation: pulseLine 4s ease-in-out infinite;
}

.network-line:nth-child(2) {
    width: 150px;
    top: 40%;
    right: 20%;
    transform: rotate(-45deg);
    animation: pulseLine 4s ease-in-out infinite 1s;
}

.network-line:nth-child(3) {
    width: 180px;
    bottom: 30%;
    left: 30%;
    transform: rotate(60deg);
    animation: pulseLine 4s ease-in-out infinite 2s;
}

.network-line:nth-child(4) {
    width: 220px;
    top: 60%;
    right: 15%;
    transform: rotate(-20deg);
    animation: pulseLine 4s ease-in-out infinite 3s;
}

.network-line:nth-child(5) {
    width: 160px;
    bottom: 20%;
    right: 35%;
    transform: rotate(40deg);
    animation: pulseLine 4s ease-in-out infinite 1.5s;
}

@keyframes pulseLine {

    0%,
    100% {
        opacity: 0.1;
        transform: scaleX(0.8) rotate(var(--rotation));
    }

    50% {
        opacity: 0.5;
        transform: scaleX(1) rotate(var(--rotation));
    }
}

.network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.network-dot:nth-child(6) {
    top: 20%;
    left: 10%;
    animation: dotPulse 3s ease-in-out infinite;
}

.network-dot:nth-child(7) {
    top: 40%;
    right: 20%;
    animation: dotPulse 3s ease-in-out infinite 0.5s;
}

.network-dot:nth-child(8) {
    bottom: 30%;
    left: 30%;
    animation: dotPulse 3s ease-in-out infinite 1s;
}

.network-dot:nth-child(9) {
    top: 60%;
    right: 15%;
    animation: dotPulse 3s ease-in-out infinite 1.5s;
}

.network-dot:nth-child(10) {
    bottom: 20%;
    right: 35%;
    animation: dotPulse 3s ease-in-out infinite 2s;
}

.network-dot:nth-child(11) {
    top: 35%;
    left: 25%;
    animation: dotPulse 3s ease-in-out infinite 2.5s;
}

.network-dot:nth-child(12) {
    bottom: 40%;
    right: 25%;
    animation: dotPulse 3s ease-in-out infinite 0.8s;
}

.network-dot:nth-child(13) {
    top: 15%;
    left: 60%;
    animation: dotPulse 3s ease-in-out infinite 1.2s;
}

.network-dot:nth-child(14) {
    bottom: 50%;
    left: 15%;
    animation: dotPulse 3s ease-in-out infinite 2.8s;
}

.network-dot:nth-child(15) {
    top: 70%;
    left: 45%;
    animation: dotPulse 3s ease-in-out infinite 0.3s;
}

.network-dot:nth-child(16) {
    top: 25%;
    right: 40%;
    animation: dotPulse 3s ease-in-out infinite 1.8s;
}

.network-dot:nth-child(17) {
    bottom: 15%;
    left: 55%;
    animation: dotPulse 3s ease-in-out infinite 2.3s;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Inner Peace Animated Background */
.peace-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.breathing-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

.breathing-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.breathing-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.breathing-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.breathing-circle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: scale(1.2) translate(-10px, -10px);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4) translate(10px, -20px);
        opacity: 0.3;
    }

    75% {
        transform: scale(1.1) translate(-5px, 10px);
        opacity: 0.4;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zen-stone {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.zen-stone:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.zen-stone:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

.zen-stone:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) translateX(-20px) rotate(240deg);
    }
}

.mandala-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.mandala-circle {
    position: absolute;
    border: 2px solid white;
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.mandala-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 60s;
}

.mandala-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-duration: 50s;
    animation-direction: reverse;
}

.mandala-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 40s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: center;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* About Section - Complete Redesign */
#about {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Floating Cards Design */
.about-floating-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.floating-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.floating-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: morphShape 8s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(90deg);
    }

    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
        transform: rotate(180deg);
    }

    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
        transform: rotate(270deg);
    }
}

.floating-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.floating-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.stat-block {
    /*text-align: center;*/
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(45, 90, 135, 0.03) 0%, rgba(74, 124, 138, 0.03) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(45, 90, 135, 0.02) 20px,
            rgba(45, 90, 135, 0.02) 40px);
    animation: slidePattern 30s linear infinite;
}

.showcase-content h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 229, 172, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    /*	background: linear-gradient(135deg, rgba(241, 229, 172, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);*/
}

.feature-list li:hover::before {
    left: 100%;
}

.feature-check {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 5px 15px rgba(241, 229, 172, 0.4);
}

/* Practices Section - Futuristic Timeline Design */
#practices {
    background: linear-gradient(135deg, rgba(136, 176, 211, 0.05) 0%, rgba(152, 216, 200, 0.05) 100%);
    padding: 5rem 5%;
}

.practices-container {
    max-width: 1200px;
    margin: 0 auto;
}

.practice-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Futuristic Left Timeline */
.timeline-track {
    position: relative;
    padding: 2rem 0;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: rgba(107, 91, 149, 0.1);
    transform: translateX(-50%);
}

.timeline-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-1);
    animation: fillTimeline 3s ease forwards;
}

@keyframes fillTimeline {
    to {
        height: 100%;
    }
}

.timeline-points {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-point {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.futuristic-label {
    position: relative;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    z-index: 5;
    min-width: 200px;
    text-align: center;
}

.futuristic-label::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.futuristic-label::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.timeline-point:hover .futuristic-label,
.timeline-point.active .futuristic-label {
    animation: zoomPulse 0.6s ease-in-out;
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


.timeline-point:hover .timeline-indicator,
.timeline-point.active .timeline-indicator {
    transform: translateX(-50%) scale(1.3);
    background: var(--primary);
    box-shadow: 0 0 15px rgba(45, 90, 135, 0.6);
}

.label-text {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Glowing dot indicator */
.timeline-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-point.active .timeline-indicator {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(107, 91, 149, 0.5);
}

/* Right Content Area */
.practice-content-area {
    display: grid;
    gap: 2rem;
}

.practice-card-new {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.practice-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
}

.practice-card-new:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.practice-icon-new {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.practice-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.practice-duration {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.practice-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.practice-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(45, 90, 135, 0.1) 0%, rgba(74, 124, 138, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.benefit-tag:hover {
    background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Resources Section - New Structure */
#resources {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
    height: 200px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
    position: relative;
    z-index: 1;
}

/* Real thumbnail images */
.morning-meditation {
    background-image: url('images/unsplash-mountain-cloud.avif');
}

.stress-relief {
    background-image: url('images/unsplash-blue-lakeside.avif');
}

.sleep-meditation {
    background-image: url('images/unsplash-mountain-top.avif');
}

.mbsr-course {
    background-image: url('images/unsplash-library-bookshelf.avif');
}

.leadership-course {
    background-image: url('images/unsplash-people-meeting-room.avif');
}

.beginner-course {
    background-image: url('images/unsplash-yoga-session.avif');
}

.timer-tool {
    background-image: url('images/unsplash-meditation-timer.avif');
}

.mood-tracker {
    background-image: url('images/unsplash-mood-tracker.avif');
}

.breathing-tool {
    background-image: url('images/unsplash-breathing-exercise.avif');
}

.resource-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px);
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(-50%, -50%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.resource-body {
    padding: 1.5rem;
}


/* Contact Section - Two Columns */
#contact {
    background: linear-gradient(135deg, #87ceeb 0%, #ffb6c1 100%);
    padding: 5rem 5%;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container h2 {
    color: white;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 90, 135, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(45, 90, 135, 0.05) 0%, rgba(74, 124, 138, 0.05) 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(45, 90, 135, 0.1);
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(45, 90, 135, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.info-text p {
    color: #666;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.submit-btn {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Demo Login details styles */
.weblizar-demo-login-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both;
}

.weblizar-demo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.weblizar-demo-card-col {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 250px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .weblizar-demo-card-col {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .weblizar-demo-card-col {
        flex: 0 0 100%;
    }
}

.weblizar-demo-card-container {
    margin-bottom: 0px;
}

.weblizar-demo-card-inner {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 12px 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.weblizar-demo-card-inner:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.weblizar-demo-image-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--wblr-base, #015fc9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
}

.weblizar-demo-image-box:has(img) {
    background-color: transparent;
}

.weblizar-demo-image-box i {
    font-size: 24px;
    width: auto;
    height: auto;
    line-height: 1;
}

.weblizar-demo-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.weblizar-demo-card-details {
    margin-left: 18px;
}

.weblizar-demo-card-details h4 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.weblizar-demo-credentials-inside {
    margin-top: 8px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 8px;
}

.weblizar-demo-credentials-inside p {
    margin: 0 0 2px 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.weblizar-demo-credentials-inside p strong {
    color: #334155;
    font-weight: 700;
}

.weblizar-demo-credentials-inside p span {
    color: #475569;
    font-weight: 500;
    margin-left: 4px;
}

.weblizar-demo-copy-btn {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-left: 8px !important;
    cursor: pointer !important;
    color: #94a3b8 !important;
    font-size: 13px !important;
    transition: color 0.2s ease !important;
    vertical-align: middle !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block !important;
}

.weblizar-demo-copy-btn:hover {
    color: var(--wblr-base, #015fc9) !important;
}

.weblizar-demo-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e1e;
    position: relative;
    padding-bottom: 8px;
}

.weblizar-demo-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #007cba;
    border-radius: 2px;
}

/* ==========================================================================
   PREFIXED FUTURISTIC ENTERPRISE HERO SLIDER (COLLISION FREE)
   ========================================================================== */
.weblizar-hero {
    min-height: 650px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 55%, #f4efff 100%);
    position: relative;
    overflow: hidden;
}

.weblizar-hero-content {
    z-index: 5;
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.weblizar-hero-content .badge {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--slider-color, #236bff) !important;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weblizar-hero-content .badge span {
    width: 60px;
    height: 3px;
    display: inline-block;
    background: var(--slider-color, #236bff);
    margin-right: 15px;
    position: relative;
    top: -3px;
    overflow: hidden;
}

.weblizar-hero-content .badge span:before,
.weblizar-hero-content .badge span:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 3px;
    animation: xRay 2s linear infinite;
    transition: all 0.5s;
}

.weblizar-hero-content .badge span:after {
    width: 100%;
    border-left: 8px solid #fff;
    border-right: 8px solid #fff;
    height: 3px;
    bottom: 0px;
    left: 0;
}

.weblizar-hero-content .badge span:before {
    width: 80%;
    border-left: 8px solid #fff;
    border-right: 8px solid #fff;
    height: 3px;
    bottom: 0px;
    left: 15px;
    z-index: 9;
}

.weblizar-hero-content h1 {
    font-size: clamp(36px, 4.0vw, 54px) !important;
    line-height: 1.15 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 18px !important;
    color: #071631 !important;
    font-weight: 900 !important;
    text-align: left !important;
}

.weblizar-hero-content h1 span {
    background: linear-gradient(135deg, #216dff, #985cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.weblizar-hero-content p {
    max-width: 580px !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #4c5f7d !important;
    margin-bottom: 28px !important;
    text-align: left !important;
    animation: none !important;
}

.weblizar-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.weblizar-primary-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #236bff, #8d4dff);
    color: white !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(72, 91, 255, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.weblizar-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(72, 91, 255, 0.35);
}

.weblizar-secondary-btn {
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 50px;
    color: #071631 !important;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 40, 90, 0.12);
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.weblizar-secondary-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.weblizar-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 780px;
    padding: 24px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(34, 80, 160, 0.06);
    backdrop-filter: blur(18px);
    gap: 15px;
    flex-wrap: wrap;
}

.weblizar-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.weblizar-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(71, 111, 255, 0.08);
    border: 1px solid rgba(71, 111, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #315bff;
    font-size: 15px;
    flex-shrink: 0;
}

.weblizar-stat-text {
    display: flex;
    flex-direction: column;
    text-align: left !important;
}

.weblizar-stat-text strong {
    font-size: 18px;
    font-weight: 800;
    color: #071631;
    line-height: 1.15;
    display: block;
    white-space: nowrap;
}

.weblizar-stat-text span {
    font-size: 11px;
    line-height: 1.25;
    color: #53647f;
    font-weight: 600;
}

/* Right Visual */
.weblizar-hero-visual {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weblizar-orbit {
    position: absolute;
    width: 560px;
    height: 360px;
    border: 1.5px dashed rgba(56, 117, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    pointer-events: none;
    z-index: 1;
}

.weblizar-center-logo {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: weblizarLogoFloat 4.5s ease-in-out infinite;
}

@keyframes weblizarLogoFloat {

    0%,
    100% {
        transform: translate(-50%, -60%) scale(1);
        filter: drop-shadow(0 15px 35px rgba(49, 91, 255, 0.45));
    }

    50% {
        transform: translate(-50%, -66%) scale(1.02);
        filter: drop-shadow(0 25px 45px rgba(49, 91, 255, 0.5));
    }
}

.weblizar-card-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    opacity: 0;
    animation-fill-mode: both !important;
}

.weblizar-service-card {
    position: relative;
    width: 160px;
    min-height: 145px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 65px rgba(55, 91, 180, 0.12);
    backdrop-filter: blur(18px);
    font-weight: 800;
    color: #081733;
    font-size: 14px;
    line-height: 1.35;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: left !important;
    cursor: pointer;
}

.weblizar-service-card:hover {
    transform: translate(-50%, -60%) scale(1.04);
    background: #ffffff;
    border-color: rgba(35, 107, 255, 0.45);
    box-shadow: 0 30px 80px rgba(35, 107, 255, 0.22);
}

.weblizar-service-card::after {
    content: "";
    width: 34px;
    height: 3px;
    background: linear-gradient(90deg, #236bff, #8d4dff);
    position: absolute;
    bottom: 22px;
    left: 22px;
    border-radius: 10px;
}

.weblizar-card-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.slick-active .weblizar-card-1 {
    animation: floatCard1 6s ease-in-out infinite;
}

.slick-active .weblizar-card-2 {
    animation: floatCard2 6s ease-in-out infinite 0.8s;
}

.slick-active .weblizar-card-3 {
    animation: floatCard3 6s ease-in-out infinite 1.5s;
}

.slick-active .weblizar-card-4 {
    animation: floatCard4 6s ease-in-out infinite 2.2s;
}

.slick-active .weblizar-card-5 {
    animation: floatCard5 6s ease-in-out infinite 2.8s;
}

@keyframes floatCard1 {
    0% {
        transform: translate(-200px, -140px);
        opacity: 0;
    }

    10%,
    100% {
        transform: translate(-200px, -140px);
        opacity: 1;
    }

    50% {
        transform: translate(-200px, -152px);
        opacity: 1;
    }
}

@keyframes floatCard2 {
    0% {
        transform: translate(0px, -280px);
        opacity: 0;
    }

    10%,
    100% {
        transform: translate(0px, -280px);
        opacity: 1;
    }

    50% {
        transform: translate(0px, -292px);
        opacity: 1;
    }
}

@keyframes floatCard3 {
    0% {
        transform: translate(200px, -140px);
        opacity: 0;
    }

    10%,
    100% {
        transform: translate(200px, -140px);
        opacity: 1;
    }

    50% {
        transform: translate(200px, -152px);
        opacity: 1;
    }
}

@keyframes floatCard4 {
    0% {
        transform: translate(-210px, 40px);
        opacity: 0;
    }

    10%,
    100% {
        transform: translate(-210px, 40px);
        opacity: 1;
    }

    50% {
        transform: translate(-210px, 28px);
        opacity: 1;
    }
}

@keyframes floatCard5 {
    0% {
        transform: translate(220px, 40px);
        opacity: 0;
    }

    10%,
    100% {
        transform: translate(220px, 40px);
        opacity: 1;
    }

    50% {
        transform: translate(220px, 28px);
        opacity: 1;
    }
}


/* Premium Podium Stage Asset */
.weblizar-podium-img {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.weblizar-spotlight-beam {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.75) 0%, rgba(56, 117, 255, 0.45) 45%, rgba(141, 77, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 35% 100%);
    filter: blur(14px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.95;
}

/* Card icon styling (Font Awesome) */
.weblizar-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(56, 117, 255, 0.08);
    border: 1px solid rgba(56, 117, 255, 0.12);
    margin-bottom: 12px;
    font-size: 18px;
    color: #3a6fff;
}

.weblizar-card-label {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: #081733;
    line-height: 1.4;
}

/* Sparkle particles */
.weblizar-sparkle {
    position: absolute;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    z-index: 5;
    animation: weblizarSparkle 3s ease-in-out infinite;
}

.weblizar-sp-1 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 8px 3px rgba(100, 180, 255, 0.8);
}

.weblizar-sp-2 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 20%;
    animation-delay: 0.7s;
    box-shadow: 0 0 6px 2px rgba(150, 200, 255, 0.7);
}

.weblizar-sp-3 {
    width: 5px;
    height: 5px;
    top: 55%;
    right: 12%;
    animation-delay: 1.2s;
    box-shadow: 0 0 5px 2px rgba(100, 180, 255, 0.6);
}

.weblizar-sp-4 {
    width: 7px;
    height: 7px;
    top: 65%;
    left: 15%;
    animation-delay: 1.8s;
    box-shadow: 0 0 7px 3px rgba(120, 170, 255, 0.75);
}

.weblizar-sp-5 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 10%;
    animation-delay: 0.4s;
    box-shadow: 0 0 5px 2px rgba(180, 210, 255, 0.65);
}

@keyframes weblizarSparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Trusted Bar */
.weblizar-trusted {
    padding: 35px 45px;
    background: #071d3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.weblizar-trusted p {
    color: #d8e4ff;
    font-weight: 500;
    margin: 0;
}

.weblizar-trusted span {
    font-size: 18px;
    font-weight: 700;
    color: #dce7ff;
    opacity: 0.85;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .weblizar-hero-visual {
        transform: scale(0.85);
    }
}

@media (max-width: 991px) {
    .weblizar-hero {
        padding: 80px 0;
        text-align: center;
    }

    .weblizar-hero-content {
        text-align: center !important;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .weblizar-hero-content h1 {
        text-align: center !important;
    }

    .weblizar-hero-content p {
        text-align: center !important;
        margin: 0 auto 38px !important;
    }

    .weblizar-hero-buttons {
        justify-content: center;
    }

    .weblizar-stats {
        margin: 0 auto;
    }

    .weblizar-hero-visual {
        transform: scale(0.85);
        height: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .weblizar-hero {
        padding: 60px 0;
    }

    .weblizar-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .weblizar-primary-btn,
    .weblizar-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .weblizar-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
        width: 100%;
        max-width: 360px;
    }

    .weblizar-stat-item {
        border-right: none;
        justify-content: flex-start;
    }

    .weblizar-hero-visual {
        transform: scale(0.62);
        height: 380px;
        margin-top: 150px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .weblizar-hero-content h1 {
        font-size: clamp(32px, 8vw, 42px) !important;
    }

    .weblizar-hero-visual {
        transform: scale(0.5);
        height: 320px;
        margin-top: 120px;
        margin-bottom: 20px;
    }
}

/* Smooth Hide Top Bar on Scroll */
.mini-top-header {
    max-height: 100px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease-out, opacity 0.3s ease-out, padding 0.35s ease-out;
}

.mini-top-header.hide-on-scroll {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Clear sticky header overlap */
.thim-hero-sections {
    padding-top: 120px !important;
}

@media (max-width: 767px) {
    .thim-hero-sections {
        padding-top: 90px !important;
    }
}

/* Slick Slider Style Rules with CSS Custom Variables Support */
.weblizar-hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.weblizar-hero-slider {
    margin-bottom: 0 !important;
}

.weblizar-hero-slider .slick-dots {
    bottom: 30px;
    z-index: 99;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.weblizar-hero-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 4px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weblizar-hero-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: rgba(35, 107, 255, 0.18) !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.weblizar-hero-slider .slick-dots li button:before {
    display: none !important;
}

.weblizar-hero-slider .slick-dots li.slick-active {
    width: 48px;
}

.weblizar-hero-slider .slick-dots li.slick-active button {
    background: var(--slider-color, #236bff) !important;
    box-shadow: 0 2px 10px rgba(var(--slider-color-rgb, 35, 91, 255), 0.4);
}

.weblizar-hero-slider .slick-prev,
.weblizar-hero-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(var(--slider-color-rgb, 35, 107, 255), 0.15) !important;
    border-radius: 50% !important;
    color: var(--slider-color, #236bff) !important;
    font-size: 16px !important;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(var(--slider-color-rgb, 35, 107, 255), 0.12) !important;
}

.weblizar-hero-slider .slick-prev {
    left: 20px;
}

.weblizar-hero-slider .slick-next {
    right: 20px;
}

.weblizar-hero-slider-wrapper:hover .slick-prev,
.weblizar-hero-slider-wrapper:hover .slick-next {
    opacity: 1;
    visibility: visible;
}

.weblizar-hero-slider .slick-prev:hover,
.weblizar-hero-slider .slick-next:hover {
    background: var(--slider-color, #236bff) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(var(--slider-color-rgb, 35, 107, 255), 0.3) !important;
    transform: translateY(-50%) scale(1.08);
}

.weblizar-hero-slider .slick-prev::before,
.weblizar-hero-slider .slick-next::before {
    display: none !important;
}

/* Staggered Content entrance animations on active slides */
.weblizar-hero-content .badge,
.weblizar-hero-content h1,
.weblizar-hero-content p,
.weblizar-hero-content .weblizar-hero-buttons,
.weblizar-hero-content .weblizar-stats {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: transform, opacity;
}

.slick-active .weblizar-hero-content .badge {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}

.slick-active .weblizar-hero-content h1 {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.slick-active .weblizar-hero-content p {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.45s, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.45s;
}

.slick-active .weblizar-hero-content .weblizar-hero-buttons {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}

.slick-active .weblizar-hero-content .weblizar-stats {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}

/* Variable overrides for slide components */
.slick-slide-item .weblizar-hero-content .badge {
    background: rgba(var(--slider-color-rgb, 35, 91, 255), 0.1);
    color: var(--slider-color, #236bff);
}

.slick-slide-item .weblizar-hero-content h1 span {
    background: linear-gradient(135deg, var(--slider-color, #236bff) 0%, #1a2b49 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.slick-slide-item .weblizar-hero-content .weblizar-hero-buttons .weblizar-primary-btn {
    background: var(--slider-color, #236bff) !important;
    box-shadow: 0 10px 25px rgba(var(--slider-color-rgb, 35, 91, 255), 0.35) !important;
}

.slick-slide-item .weblizar-hero-content .weblizar-hero-buttons .weblizar-secondary-btn {
    border: 1px solid var(--slider-color, #236bff) !important;
    color: var(--slider-color, #236bff) !important;
}

.slick-slide-item .weblizar-hero-content .weblizar-stats .weblizar-stat-item .weblizar-stat-icon {
    background: rgba(var(--slider-color-rgb, 35, 91, 255), 0.1) !important;
    color: var(--slider-color, #236bff) !important;
}

.slick-slide-item .weblizar-hero-visual .weblizar-center-logo img {
    filter: drop-shadow(0 15px 35px rgba(var(--slider-color-rgb, 35, 91, 255), 0.35)) !important;
}

.slick-slide-item .weblizar-hero-visual .weblizar-service-card .weblizar-card-icon {
    color: var(--slider-color, #236bff) !important;
}

.slick-slide-item .weblizar-hero-visual .weblizar-spotlight-beam {
    background: radial-gradient(circle, rgba(var(--slider-color-rgb, 35, 91, 255), 0.22) 0%, rgba(var(--slider-color-rgb, 35, 91, 255), 0) 70%) !important;
}

.slick-slide-item .weblizar-hero-visual .weblizar-sparkle {
    background: var(--slider-color, #236bff) !important;
    box-shadow: 0 0 10px var(--slider-color, #236bff) !important;
}

/* Old classic slider styling without inline style attributes */
.weblizar-slider-mark {
    background-color: rgba(0, 0, 0, 0) !important;
    color: #b3002e !important;
    padding: 0 !important;
}

.weblizar-rocket-visual {
    z-index: 9 !important;
}