/*!
Theme Name: WatchdogSecurity
Theme URI: https://watchdogsecurity.io/
Author: Pixelfit
Author URI: https://watchdogsecurity.io/
Description: Main Theme for Watchdog Security Website
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wds
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Common & Reset */
:root {
    --wds-primary-color: #D760F9;
    --wds-secondary-color: #4617F8;
    --wds-title-color: #050009;
    --wds-body-color: #37333A;
    --wds-border-color: #DCDCEA;
    --wds-light-color: #F8F8FC;
    --wds-primary-gradient: linear-gradient(90deg, var(--wds-secondary-color) 0%, var(--wds-primary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

*:focus {
    outline: none;
}

body, html {
    max-width: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: var(--wds-body-font-size);
    font-weight: 500;
    line-height: 1.5;
    color: var(--wds-body-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--wds-title-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.25;
}

h1 {
    font-size: var(--wds-h1-font-size);
}

h2 {
    font-size: var(--wds-h2-font-size);
}

h3 {
    font-size: var(--wds-h3-font-size);
}

h4 {
    font-size: var(--wds-h4-font-size);
}

h5 {
    font-size: var(--wds-h5-font-size);
}

h6 {
    font-size: var(--wds-h6-font-size);
}

p {
    margin: 0 0 25px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--wds-primary-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--wds-primary-color);
}

a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:active {
    color: inherit;
}

img, svg {
    max-width: 100%;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

i,
span,
a {
    display: inline-block;
}

span.elementor-edit-link-title {
    display: inline;
}

dl {
    margin-bottom: 28px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 0 28px;
}

pre {
    background-color: var(--wds-light-color);
    max-width: 100%;
    overflow: auto;
    padding: 30px;
    white-space: pre-wrap;
    margin: 20px 0;
}

pre,
code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
}

abbr,
acronym {
    border-bottom: 1px dotted var(--wds-border-color);
    cursor: help;
}

mark,
ins {
    color: var(--wds-title-color);
    background-color: var(--wds-light-color);
    text-decoration: none;
    padding: 5px;
}

del {
    display: inline-flex;
    text-decoration: line-through;
}

big {
    font-size: 125%;
}

b,
strong {
    font-weight: 600;
    color: var(--wds-title-color);
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid var(--wds-border-color);
    height: 0;
}

table {
    margin: 0 0 20px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table,
th,
td {
    border: 1px solid var(--wds-border-color);
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
    font-weight: 600;
    color: var(--wds-title-color);
}

th,
td {
    padding: 10px;
    font-size: 14px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    user-select: none;
}

iframe {
    width: 100%;
    display: block;
}

embed,
iframe,
object {
    max-width: 100%;
}

figure {
    margin: 20px 0;
}

svg {
    position: relative;
    height: 1em;
    width: 1em;
    fill: currentColor;
}

ol,
ul {
    padding: 0;
    margin: 0 0 20px;
    list-style-position: inside;
}

ol ol,
ol ul,
ul ol,
ul ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}

ol li:not(:last-child),
ul li:not(:last-child) {
    margin-bottom: 10px;
}

button,
a,
label {
    cursor: pointer;
}

/* Common */
.wds-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wds-container {
    padding: 120px 15px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.wds-light .dark-logo {
    display: none;
}

.wds-dark .light-logo {
    display: none;
}

.wds-title-color {
    color: var(--wds-title-color);
}

.wds-body-color {
    color: var(--wds-body-color);
}

.elements-wds-border-color.elementor-element {
    border-color: var(--wds-border-color);
}

h1.elementor-heading-title,
h2.elementor-heading-title,
h3.elementor-heading-title,
h4.elementor-heading-title,
h5.elementor-heading-title,
h6.elementor-heading-title {
    line-height: 1.25;
}

.wds-page-title-bg,
.wds-hero-area-bg {
    background: var(--wds-light-color);
}

.wds-light .image-light-filter img {
    filter: invert(1);
}

/* WDS Button */
.wds-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    padding: 16px 25px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    background: var(--wds-primary-gradient);
    border-radius: 40px;
    text-align: center;
}

.wds-button:hover {
    color: #FFFFFF;
}

.wds-button.button-outline {
    padding: 15px 25px;
    color: var(--wds-title-color);
    border: 1px solid var(--wds-border-color);
    background: transparent;
}

/* Site Header */
.wds-site-header {
    position: relative;
    z-index: 9999;
}

.wds-site-header .wds-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px;
}

.wds-site-header .site-logo a {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--wds-title-color);
}

.wds-site-header .site-logo {
    width: 280px;
}

.wds-site-header .site-logo img {
    max-width: 160px;
}

.wds-site-header .primary-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}

.wds-site-header .primary-menu a {
    color: var(--wds-title-color);
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
}

.wds-site-header .primary-menu .submenu-icon {
    font-size: 75%;
    margin-left: 10px;
}

.wds-site-header .primary-menu li {
    position: relative;
    margin: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wds-site-header .primary-menu li.hide-on-desktop {
    display: none;
}

.wds-site-header .primary-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--wds-light-color);
    z-index: 10;
    border: 1px solid var(--wds-border-color);
    width: 185px;
    opacity: 0;
    pointer-events: none;
    will-change: opacity, transform;
    transform: translate3d(0, 15px, 0);
    transition: opacity 0.3s cubic-bezier(.165, .84, .44, 1), transform 0.4s cubic-bezier(.1, .76, .37, 1.19);
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wds-site-header .primary-menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.wds-site-header .primary-menu li:hover > .sub-menu {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.wds-site-header .primary-menu .sub-menu li {
    margin: 0;
    height: auto;
}

.wds-site-header .primary-menu .sub-menu a {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
}

.wds-site-header .primary-menu .sub-menu a:hover {
    color: #fff;
    background-color: var(--wds-primary-color);
}

.wds-site-header .primary-menu .sub-menu .submenu-icon i {
    transform: rotate(-90deg);
}

.wds-site-header .header-buttons {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.wds-site-header .navbar-toggler {
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

.wds-site-header .navbar-toggler span {
    width: 100%;
    height: 2px;
    background-color: var(--wds-title-color);
}

.wds-site-header .nav-menu-overly,
.wds-site-header .nav-menu-close {
    display: none;
}

.wds-site-header .header-center {
    display: flex;
    align-items: center;
}

/* Switcher */
.wds-theme-toggle-wrapper {
    position: relative;
    margin-left: 30px;
}

.wds-theme-toggle-wrapper .theme-switch {
    display: inline-block;
    width: 75px;
    height: 40px;
    position: relative;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.wds-theme-toggle-wrapper .slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-color: var(--wds-light-color);
    transition: 0.4s;
    border-radius: 50px;
    border: 1px solid var(--wds-primary-color);
}

.wds-theme-toggle-wrapper .slider::before {
    content: "";
    position: absolute;
    width: 30px;
    right: 4px;
    bottom: 4px;
    top: 4px;
    background-color: var(--wds-primary-color);
    border-radius: 50%;
    transition: 0.4s;
}

.wds-theme-toggle-wrapper .sun-icon,
.wds-theme-toggle-wrapper .moon-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: var(--wds-title-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.wds-theme-toggle-wrapper .sun-icon {
    left: 12px;
}

.wds-theme-toggle-wrapper .moon-icon {
    right: 12px;
}

.wds-theme-toggle-wrapper input:checked + .slider:before {
    left: auto;
    right: 4px;
}

.wds-dark .wds-theme-toggle-wrapper .moon-icon,
.wds-light .wds-theme-toggle-wrapper .sun-icon {
    color: #fff;
}

.wds-light .wds-theme-toggle-wrapper .slider::before {
    transform: translateX(-35px);
}

/* Site Footer */
.wds-site-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.wds-site-footer .wds-container {
    padding: 0 15px;
}

.wds-site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wds-primary-gradient);
    opacity: 0.1;
}

.wds-site-footer .footer-widgets-wrapper {
    padding: 100px 0;
    border-bottom: 1px solid var(--wds-border-color);
}

.wds-site-footer .footer-widgets-wrapper .wds-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.wds-site-footer .about-widget {
    max-width: 30%;
}

.wds-site-footer .about-widget img {
    max-width: 260px;
}

.wds-site-footer .about-widget p {
    margin: 20px 0;
    color: var(--wds-title-color);
    font-size: 18px;
    font-weight: 400;
}

/* WDS Social icons */
.wds-social-icons {
    display: flex;
    gap: 10px;
}

.wds-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wds-border-color);
    border-radius: 50%;
    font-size: 16px;
    color: var(--wds-title-color);
    transition: 0.3s;
    background: transparent;
    position: relative;
    z-index: 1;
}

.wds-social-icons a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wds-primary-gradient);
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transition: 0.3s;
}

.wds-social-icons a:hover {
    border-color: transparent;
    color: #fff;
}

.wds-social-icons a:hover::before {
    opacity: 1;
    visibility: visible;
}

.wds-site-footer .widget-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wds-site-footer .widget-menu li {
    margin: 0;
}

.wds-site-footer .widget-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--wds-title-color);
}

.wds-site-footer .widget-menu a .submenu-icon {
    display: none;
}

.wds-site-footer .widget-menu a:hover {
    color: var(--wds-primary-color);
}

.wds-site-footer .widget-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0 0 0 15px;
    margin: 15px 0 0;
}

.wds-site-footer .widget-title {
    margin-bottom: 30px;
    font-size: 20px;
}

.wds-site-footer .info-widget .info-link {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--wds-title-color);
}

.wds-site-footer .info-widget .info-link i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wds-border-color);
    border-radius: 50%;
    font-size: 16px;
    color: var(--wds-title-color);
    background: #ECE1F2;
    flex: 0 0 auto;
}

.wds-site-footer .footer-copyright {
    padding: 30px 0;
}

.wds-site-footer .footer-copyright .wds-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.wds-site-footer .footer-copyright .copyright-text,
.wds-site-footer .footer-copyright .widget-menu a {
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.wds-site-footer .footer-copyright .widget-menu {
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
}

/* WDS Page Title */
.wds-page-title {
    background-color: var(--wds-light-color);
    padding: 200px 0 120px;
    text-align: center;
    margin-top: -120px;
}

.wds-page-title .wds-container {
    max-width: 850px;
    padding: 0 15px;
}

.wds-page-title h1 {
    margin: 0 0 25px;
}

.wds-page-title p {
    font-size: 18px;
}

/* Blog Archive Page */
.wds-posts-wrapper {
    display: flex;
    gap: 60px;
}

.wds-posts-wrapper .post-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.wds-posts-wrapper .post-items-wrapper {
    flex-grow: 1;
}

.wds-posts-wrapper .category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wds-posts-wrapper .category-list li:not(:last-child) {
    margin-bottom: 18px;
}

.wds-posts-wrapper .category-list a {
    font-size: 18px;
    font-weight: 500;
    color: var(--wds-body-color);
}

.wds-posts-wrapper .category-list a.active {
    color: var(--wds-primary-color);
}

.wds-posts-wrapper .social-icons-wrap {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--wds-border-color);
}

.wds-posts-wrapper .social-icons-wrap h4 {
    margin-bottom: 15px;
}

.wds-posts-wrapper .posts-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 70px;
}

.wds-posts-wrapper .all-post-title {
    margin: 0;
}

.wds-posts-wrapper .post-search-box {
    position: relative;
    margin-left: auto;
}

.wds-posts-wrapper .posts-topbar input,
.wds-posts-wrapper .posts-topbar select {
    width: 270px;
    height: 44px;
    background-color: var(--wds-light-color);
    border: 1px solid var(--wds-border-color);
    border-radius: 10px;
    padding: 5px 5px 5px 45px;
    color: var(--wds-title-color);
    font-size: 16px;
    font-weight: 500;
}

.wds-posts-wrapper .posts-topbar input::placeholder {
    color: inherit;
}

.wds-posts-wrapper .posts-topbar label {
    margin: 0;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wds-title-color);
    font-size: 18px;
}

.wds-posts-wrapper .posts-topbar select {
    width: 180px;
    padding: 10px;
}

.wds-posts-wrapper .post-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.wds-posts-wrapper .post-item {
    position: relative;
}

.wds-posts-wrapper .post-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.wds-posts-wrapper .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wds-posts-wrapper .post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.wds-posts-wrapper .post-category {
    padding: 10px 15px;
    color: var(--wds-primary-color);
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.wds-posts-wrapper .post-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wds-primary-gradient);
    border-radius: 10px;
    opacity: 0.1;
}

.wds-posts-wrapper .post-title {
    font-size: 20px;
    margin: 0 0 15px;
}

.wds-posts-wrapper .post-title a {
    color: inherit;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.wds-posts-wrapper .post-excerpt {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.wds-posts-wrapper .load-more-wrapper .wds-button {
    text-align: center;
    margin-top: 60px;
}

/* Loading skeleton */
.post-skeleton-item {
    overflow: hidden;
}

.post-skeleton-item .skeleton-thumb,
.post-skeleton-item .skeleton-title,
.post-skeleton-item .skeleton-line {
    position: relative;
    width: 100%;
    border-radius: 10px;
    background: var(--wds-primary-gradient);
    opacity: 0.1;
}

.post-skeleton-item .skeleton-thumb::after,
.post-skeleton-item .skeleton-title::after,
.post-skeleton-item .skeleton-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: post-skeleton 1.2s infinite;
    opacity: 0.5;
}

.post-skeleton-item .skeleton-thumb {
    height: 180px;
    margin-bottom: 20px;
}

.post-skeleton-item .skeleton-title {
    height: 25px;
    margin-bottom: 15px;
}

.post-skeleton-item .skeleton-line {
    height: 15px;
    margin-top: 8px;
}

.no-filter-post {
    grid-column: 1/-1;
    padding: 15px;
    text-align: center;
    color: var(--wds-title-color);
    background-color: var(--wds-light-color);
    border-radius: 10px;
}

@keyframes post-skeleton {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/* Blog Details */
.wds-posts-details-wrapper {
    display: flex;
    gap: 60px;
}

.wds-posts-details-wrapper .post-details-content {
    flex-grow: 1;
}

.wds-posts-details-wrapper .post-thumbnail {
    margin-bottom: 50px;
}

.wds-posts-details-wrapper .post-thumbnail img {
    border-radius: 16px;
}

.wds-posts-details-wrapper .post-meta {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    align-items: center;
}

.wds-posts-details-wrapper .posted-by {
    margin-left: auto;
}

.wds-posts-details-wrapper .post-category {
    padding: 10px 15px;
    color: var(--wds-primary-color);
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.wds-posts-details-wrapper .post-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wds-primary-gradient);
    border-radius: 10px;
    opacity: 0.1;
}

.wds-posts-details-wrapper .post-title {
    margin-bottom: 25px;
}

.wds-posts-details-wrapper .post-details-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.wds-posts-details-wrapper .recent-post-list {
    margin: 0 0 30px;
    list-style: none;
    background-color: var(--wds-light-color);
    border: 1px solid var(--wds-border-color);
    padding: 30px;
    border-radius: 15px;
}

.wds-posts-details-wrapper .recent-post-list li:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--wds-border-color);
}

.wds-posts-details-wrapper .recent-post-list h5 {
    font-size: 18px;
    margin: 0;
}

.wds-posts-details-wrapper .recent-post-list h5 a {
    color: var(--wds-title-color);
}

.wds-posts-details-wrapper .recent-post-list .new-tag {
    padding: 7px 10px;
    line-height: 1;
    color: #fff;
    background: var(--wds-primary-gradient);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

/* Related Posts */
.wds-related-posts-wrapper {
    padding-top: 120px;
}

.related-section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.related-section-title {
    margin: 0;
}

.related-post-swiper-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.related-post-swiper-arrows button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wds-border-color);
    border-radius: 50%;
    background-color: var(--wds-light-color);
    color: var(--wds-title-color);
    cursor: pointer;
    font-size: 20px;
}

/* Hero Filter */
.hero-filter-wrapper {
    position: relative;
    z-index: 1;
    min-height: 550px;
}

.hero-filter-wrapper .filter-image {
    position: relative;
    z-index: 1;
    padding: 15px;
    border: 1px solid var(--wds-border-color);
    border-radius: 40px;
}

.hero-filter-wrapper .filter-image img {
    border-radius: 20px;
}

.hero-filter-wrapper .filter-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: var(--wds-primary-gradient);
    opacity: 0.4;
    filter: blur(40px);
    border-radius: 40px;
}

.hero-filter-wrapper .filter-image::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    background-color: #0E0B1C;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.hero-filter-wrapper.filter-images-inactive .filter-image::after {
    opacity: 0.5;
    visibility: visible;
}

.hero-filter-wrapper.filter-images-inactive .filter-image img {
    filter: blur(2px);
}

.hero-filter-wrapper .filter-btns-area {
    position: absolute;
    right: -100px;
    bottom: -30px;
    width: 500px;
    z-index: 3;
    padding: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--wds-border-color);
    text-align: center;
}

.hero-filter-wrapper .filter-btns-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: var(--wds-primary-gradient);
    border-radius: 30px;
    opacity: 0.5;
    filter: blur(50px);
}

.hero-filter-wrapper .filter-btns-area::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    background-color: #fff;
    border-radius: 20px;
    z-index: -1;
}

.hero-filter-wrapper .filter-title {
    margin-bottom: 10px;
}

.hero-filter-wrapper .filter-desc {
    margin: 0;
}

.hero-filter-wrapper .filter-btns-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 30px 0;
}

.hero-filter-wrapper .filter-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: transparent;
    border: 1px solid var(--wds-border-color);
    cursor: pointer;
    border-radius: 20px;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-filter-wrapper .btn-icon {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-filter-wrapper .btn-logo-icon {
    display: none;
}

.hero-filter-wrapper .filter-btn::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--wds-border-color);
    border-radius: 4px;
    transition: 0.3s;
}

.hero-filter-wrapper .filter-btn[data-active="true"]::before {
    background-color: var(--wds-primary-color);
    border-color: var(--wds-primary-color);
    color: #FFFFFF;
}

.filter-btns-area .wds-button {
    width: 100%;
}

/* WDS Subtitle */
.wds-subtitle {
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: var(--wds-title-color);
    background-color: var(--wds-light-color);
    padding: 10px 25px;
    border: 1px solid var(--wds-border-color);
    border-radius: 50px;
}

/* WDS Swiper */
.wds-responsive-swiper:not(.swiper-initialized) .swiper-pagination {
    display: none;
}

.wds-testimonial-slider .swiper-pagination,
.wds-responsive-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12px;
}

.wds-testimonial-slider .swiper-pagination {
    justify-content: flex-start;
    padding-top: 45px;
    margin-top: 0;
}

.wds-testimonial-slider .swiper-pagination .swiper-pagination-bullet,
.wds-responsive-swiper .swiper-pagination .swiper-pagination-bullet {
    transition: 0.3s;
    width: 8px;
    height: 8px;
    background: var(--wds-border-color);
    margin: 0 4px !important;
    opacity: 1;
}

.wds-testimonial-slider .swiper-pagination .swiper-pagination-bullet-active,
.wds-responsive-swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: var(--wds-title-color);
}

.wds-responsive-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* WDS feature Cards */
.wds-feature-cards .single-feature-card {
    padding: 24px;
    border: 1px solid var(--wds-border-color);
    background-color: var(--wds-light-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.wds-feature-cards .card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 25px;
}

.wds-feature-cards .card-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: var(--wds-title-color);
    border: 1px solid var(--wds-border-color);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.wds-feature-cards .card-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wds-primary-gradient);
    opacity: 0.08;
}

.wds-feature-cards .card-title {
    margin: 0;
    font-size: 20px;
}

.wds-feature-cards p {
    margin: auto 0 0;
}

/* WDS Facts Cards */
.wds-facts-cards .single-facts-card {
    padding: 30px;
    border: 1px solid var(--wds-border-color);
    background-color: var(--wds-light-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.wds-facts-cards .card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wds-facts-cards .card-fact {
    color: var(--wds-title-color);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.wds-facts-cards .card-title {
    color: var(--wds-body-color);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.wds-facts-cards p {
    margin: 25px 0 15px;
}

.wds-facts-cards .card-url {
    color: var(--wds-primary-color);
    text-decoration: underline;
    margin-top: auto;
}

.wds-facts-cards .card-url:hover {
    color: var(--wds-secondary-color);
}

/* WDS Consulting Cards */
.wds-consulting-cards .single-consulting-card {
    border: 1px solid var(--wds-border-color);
    border-radius: 20px;
    padding: 30px;
    background-color: var(--wds-light-color);
    display: flex;
    flex-direction: column;
    height: auto;
}

.wds-consulting-cards .card-title {
    margin: 0 0 20px;
    font-size: 30px;
}

.wds-consulting-cards p {
    margin: 0 0 30px;
}

.wds-consulting-cards .card-url {
    color: var(--wds-primary-color);
    margin-top: auto;
}

/* Feature Img */
.feature-img-wrap {
    position: relative;
    z-index: 1;
    padding: 8px;
    border-radius: 25px;
    border: 1px solid var(--wds-border-color);
}

.feature-img-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--wds-primary-gradient);
    opacity: 0.3;
    filter: blur(50px);
    border-radius: 25px;
}

.feature-img-two-wrap {
    position: relative;
    z-index: 1;
    padding: 3px;
    background: var(--wds-primary-gradient);
    border-radius: 20px;
}

.feature-img-two-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--wds-primary-gradient);
    z-index: -1;
    border-radius: 20px;
    filter: blur(12px);
}

/* Pricing Table */
.wds-pricing-tables .swiper-wrapper {
    margin: 47px 0 10px;
}

.wds-pricing-tables:not(.swiper-initialized).swiper {
    overflow: visible;
}

.wds-pricing-tables:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--wds-border-color);
    background-color: var(--wds-light-color);
    border-radius: 20px;
    gap: 0;
}

.wds-pricing-tables .single-table {
    position: relative;
    padding: 30px 19px;
}

.wds-pricing-tables:not(.swiper-initialized) .single-table:not(:last-child) {
    border-right: 1px solid var(--wds-border-color);
}

.wds-pricing-tables .table-title {
    font-size: 20px;
    margin: 0 0 12px;
}

.wds-pricing-tables .table-desc {
    margin: 0 0 30px;
}

.wds-pricing-tables .table-price {
    color: var(--wds-title-color);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 8px;
}

.wds-pricing-tables .table-header {
    display: flex;
    flex-direction: column;
    min-height: 308px;
}

.wds-pricing-tables .table-price-wrap {
    margin-top: auto;
}

.wds-pricing-tables .table-period {
    font-size: 14px;
    margin: 0;
}

.wds-pricing-tables .wds-button {
    width: 100%;
    margin: 20px 0 30px;
    background-color: #EAEAF3;
}

.wds-pricing-tables .table-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wds-pricing-tables .table-features li {
    position: relative;
    font-size: 14px;
    color: var(--wds-title-color);
}

.wds-pricing-tables .table-features li:not(:last-child) {
    margin-bottom: 14px;
}

.wds-pricing-tables .table-features .feature-icon {
    color: var(--wds-primary-color);
    font-size: 12px;
    margin-right: 4px;
}

.wds-tooltip-parent,
.wds-tooltip {
    position: relative;
}

.wds-tooltip .tooltip-text {
    position: absolute;
    right: -10px;
    top: calc(100% + 4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: max-content;
    max-width: 220px;
    padding: 4px 8px;
    font-size: 12px;
    border: 1px solid var(--wds-primary-color);
    border-radius: 5px;
    background: var(--wds-light-color);
    z-index: 2;
    margin: 0;
}

.wds-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    right: 11px;
    top: -3.55px;
    width: 6px;
    height: 6px;
    background: var(--wds-light-color);
    transform: rotate(45deg);
    border: 1px solid var(--wds-primary-color);
    border-right: 0;
    border-bottom: 0;
}

.wds-tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.wds-tooltip i {
    color: var(--wds-title-color);
    cursor: pointer;
    margin-right: 0;
    margin-left: 2px;
    font-size: 12px;
}

.wds-pricing-tables .feature-table {
    position: relative;
    z-index: 2;
}

.wds-pricing-tables .feature-table::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 10px);
    background-color: #fff;
    border-radius: 20px;
    z-index: -1;
}

.wds-pricing-tables .feature-table::after {
    content: "Best Value";
    position: absolute;
    left: -1px;
    top: -47px;
    width: calc(100% + 2px);
    height: calc(100% + 58px);
    background-color: var(--wds-primary-color);
    z-index: -2;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
    line-height: 1;
}

/* Comparison Table */
.wds-comparison-desktop .comparison-header,
.wds-comparison-desktop .comparison-item {
    display: flex;
}

.wds-comparison-desktop .comparison-col {
    width: 18%;
    text-align: center;
    padding: 15px 20px;
    border-right: 1px solid var(--wds-border-color);
}

.wds-comparison-desktop .comparison-col:last-child {
    border: none;
}

.wds-comparison-desktop .comparison-col.info-col {
    width: 28%;
    text-align: left;
}

.wds-comparison-desktop .comparison-header .comparison-col {
    padding: 0 10px 20px;
}

.wds-comparison-desktop .plan-title {
    font-size: 20px;
    text-align: center;
    margin: 0 0 15px;
}

.wds-comparison-desktop .wds-button {
    padding: 15px 25px;
}

.wds-comparison-desktop .comparison-group {
    border: 1px solid var(--wds-border-color);
    border-radius: 20px;
}

.wds-comparison-desktop .comparison-group:not(:last-child) {
    margin-bottom: 70px;
}

.wds-comparison-desktop .comparison-group-title {
    font-size: 18px;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid var(--wds-border-color);
    background: var(--wds-light-color);
    border-radius: 20px 20px 0 0;
}

.wds-comparison-desktop .comparison-item {
    align-items: center;
}

.wds-comparison-desktop .comparison-item:nth-child(even) {
    background-color: var(--wds-light-color);
}

.wds-comparison-desktop .comparison-item:nth-child(even) .comparison-col {
    border-color: transparent;
}

.wds-comparison-desktop .comparison-item:last-child {
    border-radius: 0 0 20px 20px;
}

.wds-comparison-desktop .feature-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--wds-title-color);
    font-size: 14px;
}

.wds-comparison-desktop .feature-value {
    font-size: 14px;
    color: var(--wds-title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wds-comparison-desktop .feature-value i {
    color: var(--wds-primary-color);
}

.wds-comparison-desktop .feature-value svg {
    fill: var(--wds-primary-color);
}

.wds-comparison-desktop .feature-tooltip i {
    color: var(--wds-body-color);
    cursor: pointer;
}

/* WDS Accordion */
.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item {
    background-color: var(--wds-light-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid var(--wds-border-color);
    transition: 0.3s;
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item[open] {
    border-color: transparent;
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--wds-primary-gradient);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item[open]::after {
    opacity: 0.1;
    visibility: visible;
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item-title {
    border: none;
    padding: 20px 20px;
    background: transparent;
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item-title-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--wds-title-color);
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover > .e-n-accordion-item-title .e-n-accordion-item-title-icon span > i,
.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item[open] > .e-n-accordion-item-title .e-n-accordion-item-title-icon span > i,
.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span > i {
    color: var(--wds-title-color);
}

.wds-accordion.elementor-widget-n-accordion .e-n-accordion-item > .e-con {
    border: none;
    padding: 0 20px 30px;
}

/* WDS Cost Calculation */
.wds-cost-calculation {
    position: relative;
    padding: 30px 20px 20px;
    background: var(--wds-primary-gradient);
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
}

.wds-cost-calculation .wrapper-title {
    background: #fff;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wds-title-color);
    font-size: 18px;
    font-weight: 600;
    width: 195px;
    height: 47px;
    justify-self: center;
}

.wds-cost-calculation .calculation-left, .wds-cost-calculation .calculation-right {
    display: flex;
    flex-direction: column;
}

.wds-cost-calculation .wrapper-title img {
    max-width: 110px;
}

.wds-cost-calculation .app-lists-wrap,
.wds-cost-calculation .calculation-result,
.wds-cost-calculation .total-user,
.wds-cost-calculation .feedback-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.wds-cost-calculation .app-list-title {
    margin: 0 0 25px;
}

.wds-cost-calculation .app-lists {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.wds-cost-calculation .single-app {
    position: relative;
}

.wds-cost-calculation .single-app img {
    width: 44px;
    height: 44px;
    object-position: center;
    object-fit: contain;
}

.wds-cost-calculation .single-app button {
    margin: 0;
    padding: 15px;
    border: 1px solid var(--wds-border-color);
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.wds-cost-calculation .single-app button:hover,
.wds-cost-calculation .single-app.selected button {
    border-color: var(--wds-primary-color);
}

.wds-cost-calculation .single-app .app-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    min-width: max-content;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid var(--wds-primary-color);
    border-radius: 10px;
    background: #fff;
    z-index: 2;
    margin: 0;
}

.wds-cost-calculation .single-app .app-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + -2px);
    width: 6px;
    height: 6px;
    background: #fff;
    transform: translate(-50%, 0) rotate(45deg);
    border: 1px solid var(--wds-primary-color);
    border-top: 0;
    border-left: 0;
}

.wds-cost-calculation .single-app:hover .app-tooltip {
    opacity: 1;
    visibility: visible;
}

.wds-cost-calculation .single-app button::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--wds-primary-gradient);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.wds-cost-calculation .single-app.selected button::after {
    opacity: 1;
    visibility: visible;
}

.wds-cost-calculation .result-title {
    font-size: 32px;
    margin: 0 0 15px;
    color: var(--wds-primary-color);
}

.wds-cost-calculation .calculation-result p {
    margin: 0;
    font-size: 18px;
}

.wds-cost-calculation .calculation-result p:not(:last-child) {
    margin-bottom: 30px;
}

.wds-cost-calculation h5 {
    font-size: 18px;
    margin: 0 0 20px;
    display: block;
}

.wds-cost-calculation .user-count {
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    background: #F9EEFE;
    border-radius: 10px;
    border: 1px solid var(--wds-primary-color);
    outline: none;
    padding: 0;
}

.wds-cost-calculation .user-count::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 15px;
    background: var(--wds-primary-color);
    cursor: pointer;
    border-radius: 10px;
}

.wds-cost-calculation .user-count::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 15px;
    background: var(--wds-primary-color);
    cursor: pointer;
    border-radius: 10px;
}

.wds-cost-calculation .user-range-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-top: 20px;
}

.wds-cost-calculation .feedback-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.wds-cost-calculation .reviewer-photo {
    flex-shrink: 0;
}

.wds-cost-calculation .reviewer-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.wds-cost-calculation .reviewer-content .flex-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.wds-cost-calculation .reviewer-content .rating {
    font-size: 16px;
    color: #FFB310;
}

.wds-cost-calculation .reviewer-content .review-name {
    font-size: 16px;
    font-weight: 500;
}

.wds-cost-calculation .reviewer-content .reviewer-desc {
    font-size: 18px;
}

/* WDS Team Cards */
.wds-team-members:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.wds-team-members .single-team-member {
    padding: 30px 25px;
    border: 1px solid var(--wds-border-color);
    background-color: var(--wds-light-color);
    border-radius: 20px;
    text-align: center;
}

.wds-team-members .member-photo {
    margin-bottom: 30px;
}

.wds-team-members .member-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}

.wds-team-members .member-name {
    margin: 0 0 6px;
}

.wds-team-members .member-designation {
    color: var(--wds-title-color);
    margin: 0 0 25px;
}

.wds-team-members .wds-social-icons {
    justify-content: center;
}

/* WDS News Cards */
.wds-news-cards .single-news-card {
    padding: 24px;
    border: 1px solid var(--wds-border-color);
    background-color: var(--wds-light-color);
    border-radius: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.wds-news-cards .news-logo {
    margin-bottom: 20px;
}

.wds-news-cards .news-desc {
    margin: 0 0 20px;
}

.wds-news-cards .news-url {
    text-decoration: underline;
    margin-top: auto;
}

/* 404 Page */
.content-404 {
    text-align: center;
}

/* Testimonial Cards */
.wds-testimonial-cards:not(.swiper-initialized) .swiper-wrapper {
    align-items: flex-start;
}

.wds-testimonial-cards .swiper-wrapper {
    position: relative;
    z-index: 1;
}

.wds-testimonial-cards .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #FFFFFF 100%);
}

.wds-testimonial-slider .swiper-wrapper::after {
    display: none;
}

.wds-testimonial-slider:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.testimonial-card {
    position: relative;
    padding: 30px;
    background-color: var(--wds-light-color);
    border: 1px solid var(--wds-border-color);
    border-radius: 30px;
    z-index: 1;
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100px;
    line-height: 1;
    position: absolute;
    z-index: -1;
    right: 10px;
    top: 10px;
    color: var(--wds-title-color);
    opacity: 0.04;
}

.testimonial-card .rating-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card .rating-icon {
    position: relative;
    overflow: hidden;
    --icon-marked-width: 100%;
}

.testimonial-card .rating-icon i {
    color: var(--wds-border-color);
}

.testimonial-card .rating-icon i.icon-marked {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--icon-marked-width);
    height: 100%;
    color: #FFB310;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card .description {
    margin: 0 0 30px;
}

.testimonial-card .reviewer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.testimonial-card .reviewer-info .photo {
    flex-shrink: 0;
}

.testimonial-card .reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-card .reviewer-info .name {
    font-size: 18px;
    margin: 0;
}

.testimonial-card .reviewer-info .designation {
    font-size: 14px;
    margin-top: 5px;
}

/* WDS Form WRAP */
.wds-form-wrap {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.wds-form-wrap::before, .wds-form-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--wds-primary-gradient);
    z-index: -1;
    border-radius: 20px;
}

.wds-form-wrap::after {
    inset: 1px;
    background: var(--wds-light-color);
}

.wds-form-wrap .ff-el-group.ff_submit_btn_wrapper {
    margin-bottom: 0;
}

.wds-form-wrap .ff-default .ff-el-form-control,
.wds-form-wrap .ff-default .ff-el-form-control:focus,
.wds-form-wrap select.ff-el-form-control:not([size]):not([multiple]) {
    background: transparent;
    height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    border: 1px solid var(--wds-border-color);
    font-size: 16px;
    font-weight: 500;
    color: var(--wds-title-color);
}

.wds-form-wrap .ff-default textarea.ff-el-form-control {
    height: 135px;
    padding-top: 20px;
}

.wds-form-wrap .ff-default .ff-el-form-control::placeholder {
    color: var(--wds-title-color);
}

.wds-form-wrap .ff-el-group .ff-btn-submit {
    width: 100%;
    padding: 16px 25px;
    font-size: 18px;
    font-weight: 600;
    height: auto;
    line-height: 1;
    border: none;
    color: #FFFFFF !important;
    background: var(--wds-primary-gradient);
    border-radius: 40px;
    text-align: center;
}

.wds-form-wrap .ff-default .ff-el-form-control option {
    color: var(--wds-title-color);
    background: var(--wds-light-color);
}

.wds-form-wrap .ff-el-group.partnership-form-title h4 {
    color: var(--wds-primary-color);
    text-align: center;
    margin: 0;
}

.wds-form-wrap .ff-el-group.partnership-form-title {
    margin-bottom: 30px;
}

.wds-form-wrap .fluentform .ff-el-group {
    margin-bottom: 15px;
}

.booking-iframe::after {
    content: "";
    background: var(--wds-primary-gradient);
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 13px;
    left: 13px;
    border-radius: 10px;
}

/* Pricing Feature Card */
.wds-pricing-features-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 24px;
    border: 1px solid var(--wds-border-color);
    border-radius: 20px;
    background-color: var(--wds-light-color);
}

.wds-pricing-features-card .card-title {
    margin: 0 0 15px;
}

.wds-pricing-features-card .toggle-button {
    color: var(--wds-title-color);
    font-weight: 500;
    margin-top: 15px;
    padding: 5px;
}

.wds-pricing-features-card .toggle-button i {
    margin-right: 10px;
}

.wds-pricing-features-card .toggle-button .hide-text {
    display: none;
}

.wds-pricing-features-card .list-open .open-text {
    display: none;
}

.wds-pricing-features-card .list-open .hide-text {
    display: block;
}

.wds-pricing-features-card .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    width: 100%;
}

.wds-pricing-features-card .features-wrap {
    padding: 20px 0 0;
    width: 100%;
    text-align: left;
    display: none;
}

.wds-pricing-features-card .features-wrap .feature-group-title {
    margin: 0 0 15px;
}

.wds-pricing-features-card .features-wrap .feature-group:not(:last-child) {
    margin-bottom: 20px;
}

/* Feature Compare Btn */
#compareSectionToggleBtn .wds-subtitle {
    position: relative;
    color: var(--wds-primary-color);
    cursor: pointer;
    border-color: transparent;
    background: transparent;
    overflow: hidden;
}

#compareSectionToggleBtn .wds-subtitle::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: 0.3s;
}

#compareSectionToggleBtn.active .wds-subtitle::after {
    transform: rotate(-180deg);
}

#compareSectionToggleBtn .wds-subtitle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--wds-primary-gradient);
    z-index: -1;
    opacity: 0.1;
}

body:not(.elementor-editor-active) #compareSection{
    display: none;
    transition: none;
}

/* Theme Dark Style */
.wds-dark:root {
    --wds-title-color: #FFFFFF;
    --wds-body-color: #CFCED2;
    --wds-border-color: #484552;
    --wds-light-color: #1A1727;
}

.wds-dark body {
    background-color: #0E0B1C;
}

.wds-dark .wds-page-title-bg,
.wds-dark .wds-hero-area-bg {
    background: linear-gradient(108deg, rgba(5, 0, 9, 0) 2%, #050009 36%, #050009 65%, rgba(5, 0, 9, 0) 100%);
}

.wds-dark .wds-site-footer .footer-widgets-wrapper,
.wds-dark .wds-social-icons a,
.wds-dark .wds-site-footer .info-widget .info-link i {
    border-color: rgba(255, 255, 255, 0.15);
}

.wds-dark .wds-site-footer .info-widget .info-link i {
    background-color: #291E3C;
}

.wds-dark .wds-page-title {
    background-color: #050009;
}

.wds-dark .hero-filter-wrapper .filter-btns-area {
    background-color: transparent;
}

.wds-dark .hero-filter-wrapper .filter-btns-area::after {
    background-color: #1B1828;
}

.wds-dark .hero-filter-wrapper .filter-btn {
    background-color: #1A1727;
    color: #fff;
}

.wds-dark .wds-pricing-tables .wds-button.button-outline {
    background-color: #252332;
}

.wds-dark .wds-pricing-tables .feature-table::before {
    background-color: #0E0B1C;
}

.wds-dark .wds-pricing-tables .feature-table::after {
    color: #0E0B1C;
}

.wds-dark .wds-comparison-desktop .comparison-group-title,
.wds-dark .wds-comparison-desktop .comparison-item:nth-child(even) {
    background-color: #252332;
}

.wds-dark .wds-comparison-desktop .comparison-item:nth-child(odd) {
    background-color: var(--wds-light-color);
}

.wds-dark .wds-cost-calculation {
    background: var(--wds-light-color);
    border: 1px solid var(--wds-border-color);
}

.wds-dark .wds-cost-calculation .app-lists-wrap,
.wds-dark .wds-cost-calculation .calculation-result,
.wds-dark .wds-cost-calculation .total-user,
.wds-dark .wds-cost-calculation .feedback-card {
    background: #0E0B1C;
}

.wds-dark .wds-cost-calculation .wrapper-title {
    position: relative;
    background: transparent;
    z-index: 1;
}

.wds-dark .wds-cost-calculation .wrapper-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--wds-primary-gradient);
    opacity: 0.1;
    border-radius: 40px;
}

.wds-dark .wds-cost-calculation .single-app .app-tooltip,
.wds-dark .wds-cost-calculation .single-app .app-tooltip::after {
    background: #0E0B1C;
}

.wds-dark .wds-cost-calculation .user-count {
    background-color: #1F1232;
}

.wds-dark .wds-testimonial-cards .swiper-wrapper::after {
    background: linear-gradient(180deg, rgba(14, 11, 28, 0) 60%, #0E0B1C 100%);
}

/* Responsive Style */
@media only screen and (min-width: 1025px) {
    body {
        --wds-h1-font-size: 58px;
        --wds-h2-font-size: 48px;
        --wds-h3-font-size: 32px;
        --wds-h4-font-size: 24px;
        --wds-h5-font-size: 20px;
        --wds-h6-font-size: 18px;
        --wds-body-font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        --wds-h1-font-size: 42px;
        --wds-h2-font-size: 34px;
        --wds-h3-font-size: 26px;
        --wds-h4-font-size: 22px;
        --wds-h5-font-size: 18px;
        --wds-h6-font-size: 16px;
        --wds-body-font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    body {
        --wds-h1-font-size: 28px;
        --wds-h2-font-size: 24px;
        --wds-h3-font-size: 20px;
        --wds-h4-font-size: 18px;
        --wds-h5-font-size: 16px;
        --wds-h6-font-size: 15px;
        --wds-body-font-size: 14px;
    }
}


@media (max-width: 1500px) {
    .hero-filter-wrapper .filter-btns-area {
        right: 0;
    }
}

@media (max-width: 1200px) {
    .wds-site-footer .about-widget {
        max-width: 35%;
    }

    .wds-posts-wrapper {
        gap: 30px;
    }

    .wds-posts-details-wrapper {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .wds-container {
        padding: 90px 15px;
    }

    .wds-responsive-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wds-button,
    .wds-form-wrap .ff-el-group .ff-btn-submit {
        font-size: 16px;
    }

    .wds-site-header .site-logo {
        width: auto;
    }

    .wds-site-header .site-logo img {
        max-width: 130px;
    }

    .wds-site-header .navbar-toggler {
        display: flex;
    }

    .wds-site-header .header-buttons {
        display: none;
    }

    .wds-site-header .nav-menu-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        width: 320px;
        height: 100vh;
        background: var(--wds-light-color);
        overflow: hidden;
        z-index: 99999;
        padding: 50px 30px;
        transition: transform 0.45s ease-in-out;
        transform: translateX(-100%)
    }

    .wds-site-header .nav-menu-wrapper.show-menu {
        transform: translateX(0);
    }

    .wds-site-header .nav-menu-overly {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 99998;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: visibility 0.45s ease-in-out;
    }

    .wds-site-header .nav-menu-overly.show-menu {
        opacity: 0.5;
        visibility: visible;
    }

    .admin-bar .wds-site-header .nav-menu-wrapper {
        padding-top: 80px;
    }

    .wds-site-header .primary-menu {
        flex-direction: column;
        gap: 0;
    }

    .wds-site-header .primary-menu li {
        height: auto;
        width: 100%;
        display: block;
    }

    .wds-site-header .primary-menu li:not(:last-child) {
        border-bottom: 1px solid var(--wds-border-color);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .wds-site-header .primary-menu li.hide-on-desktop {
        display: flex;
    }

    .wds-site-header .primary-menu a {
        width: 100%;
        justify-content: space-between;
        padding: 5px 0;
        font-size: 15px;
        position: relative;
    }

    .wds-site-header .primary-menu .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: translate(0);
        opacity: 1;
        background: transparent;
        pointer-events: unset;
        display: none;
        transition: none;
    }

    .wds-site-header .primary-menu .sub-menu li:first-child {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--wds-border-color);
    }

    .wds-site-header .primary-menu .sub-menu .submenu-icon i {
        transform: rotate(0);
    }

    .wds-site-header .primary-menu .sub-menu a {
        padding: 5px;
        font-size: 15px;
    }

    .wds-site-header .primary-menu .submenu-icon {
        position: absolute;
        top: -10px;
        right: 0;
        width: 50px;
        height: calc(100% + 20px);
        border-left: 1px solid var(--wds-border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .wds-site-header .nav-menu-close {
        display: block;
        position: absolute;
        right: 25px;
        top: 25px;
        font-size: 20px;
        cursor: pointer;
        line-height: 1;
        padding: 5px;
    }

    .admin-bar .wds-site-header .nav-menu-close {
        top: 55px;
    }

    .wds-site-footer .footer-widgets-wrapper .wds-container {
        flex-wrap: wrap;
        gap: 40px 30px;
    }

    .wds-site-footer .about-widget, .wds-site-footer .menu-widget {
        max-width: 45%;
        width: 45%;
    }

    .wds-site-footer .footer-widgets-wrapper {
        padding: 80px 0;
    }

    .wds-site-footer .about-widget p,
    .wds-site-footer .widget-menu a,
    .wds-site-footer .info-widget .info-link {
        font-size: 16px;
    }

    .wds-site-footer .about-widget img {
        max-width: 180px;
    }

    .wds-site-footer .footer-copyright .wds-container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .wds-page-title {
        padding: 130px 0 60px;
        margin-top: -92px;
    }

    .wds-page-title p {
        font-size: 16px;
    }

    .wds-posts-wrapper .category-list a {
        font-size: 16px;
    }

    .wds-posts-wrapper .post-sidebar {
        width: 200px;
    }

    .wds-posts-wrapper .post-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wds-posts-wrapper .posts-topbar input, .wds-posts-wrapper .posts-topbar select {
        width: 185px;
    }

    .wds-posts-wrapper .posts-topbar select {
        width: 150px;
    }

    .wds-posts-details-wrapper .post-details-sidebar {
        display: none;
    }

    .wds-related-posts-wrapper {
        padding-top: 90px;
    }

    .hero-filter-wrapper .filter-image {
        display: none;
    }

    .hero-filter-wrapper .filter-btns-area {
        position: static;
        margin: auto;
    }

    .hero-filter-wrapper .filter-btn {
        cursor: default;
    }

    .hero-filter-wrapper .btn-icon,
    .hero-filter-wrapper .filter-btn::before {
        display: none;
    }

    .hero-filter-wrapper .btn-logo-icon {
        display: block;
        margin-bottom: 10px;
    }

    .hero-filter-wrapper .btn-logo-icon img {
        width: 44px;
        height: 44px;
        object-position: center;
        object-fit: contain;
    }

    .hero-filter-wrapper .filter-btns-area::before {
        filter: blur(30px);
    }

    .wds-subtitle {
        font-size: 16px;
    }

    .feature-img-wrap::before {
        filter: blur(20px);
    }

    .testimonial-card::before {
        font-size: 90px;
    }

    .testimonial-card .rating-wrap {
        font-size: 14px;
    }

    .wds-facts-cards .card-fact {
        font-size: 40px;
    }

    .wds-pricing-tables .single-table {
        border: 1px solid var(--wds-border-color);
        border-radius: 20px;
        padding: 30px 22px;
    }

    .wds-pricing-tables .table-header {
        min-height: auto;
    }

    .wds-pricing-tables .feature-table::after {
        font-size: 16px;
        padding-top: 18px;
    }

    .wds-cost-calculation {
        grid-template-columns: 1fr;
    }

    .wds-cost-calculation .app-lists {
        grid-template-columns: repeat(6, 1fr);
    }

    .wds-cost-calculation .wrapper-title.wds-logo-title {
        grid-row: 4/5;
    }

    .wds-cost-calculation .total-user {
        grid-row: 3/4;
    }

    .wds-cost-calculation .result-title {
        font-size: 26px;
    }

    .wds-cost-calculation .calculation-result p,
    .wds-cost-calculation .reviewer-content .reviewer-desc {
        font-size: 16px;
    }

    .wds-consulting-cards .card-title {
        font-size: 26px;
    }

    .wds-accordion.elementor-widget-n-accordion .e-n-accordion-item-title-text {
        font-size: 16px;
    }

    .wds-accordion.elementor-widget-n-accordion .e-n-accordion-item-title {
        padding: 15px;
    }

    .wds-accordion.elementor-widget-n-accordion .e-n-accordion-item > .e-con {
        padding: 0 15px 20px;
    }

    .wds-pricing-tables .table-price {
        font-size: 32px;
    }

    .wds-tooltip {
        position: static;
    }

    .wds-tooltip .tooltip-text {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .wds-tooltip .tooltip-text::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

@media (max-width: 767px) {
    .wds-container {
        padding: 60px 15px;
    }

    .wds-responsive-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .wds-site-footer .footer-widgets-wrapper {
        padding: 40px 0;
    }

    .wds-site-footer .footer-widgets-wrapper .wds-container {
        flex-direction: column;
        gap: 40px;
    }

    .wds-site-footer .about-widget, .wds-site-footer .menu-widget {
        max-width: 100%;
        width: 100%;
    }

    .wds-site-footer .about-widget p, .wds-site-footer .widget-menu a, .wds-site-footer .info-widget .info-link {
        font-size: 15px;
    }

    .wds-site-footer .widget-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .wds-site-footer .about-widget img {
        max-width: 150px;
    }

    .wds-site-footer .footer-copyright .copyright-text, .wds-site-footer .footer-copyright .widget-menu a {
        font-size: 14px;
    }

    .wds-site-footer .footer-copyright .widget-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .wds-page-title {
        padding: 110px 0 40px;
    }

    .wds-posts-wrapper {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .wds-posts-wrapper .posts-topbar {
        flex-wrap: wrap;
    }

    .wds-posts-wrapper .post-search-box {
        margin-left: 0;
        width: 100%;
        order: 3;
    }

    .wds-posts-wrapper .posts-topbar input, .wds-posts-wrapper .posts-topbar select {
        width: 100%;
    }

    .wds-posts-wrapper .all-post-title {
        width: 35%;
    }

    .wds-posts-wrapper .posts-topbar select {
        width: 50%;
    }

    .wds-posts-wrapper .posts-topbar {
        margin-bottom: 60px;
    }

    .wds-posts-wrapper .post-items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .wds-posts-wrapper .post-title {
        font-size: 18px;
    }

    .wds-posts-wrapper .post-sidebar {
        width: 100%;
    }

    .wds-posts-details-wrapper .post-details-sidebar {
        display: none;
    }

    .wds-related-posts-wrapper {
        padding-top: 90px;
    }

    .wds-posts-details-wrapper .post-meta {
        flex-wrap: wrap;
        gap: 12px 20px;
        margin-bottom: 20px;
    }

    .wds-posts-details-wrapper .posted-by {
        margin-left: 0;
    }

    .wds-posts-details-wrapper .post-thumbnail img {
        border-radius: 10px;
    }

    .related-section-title-wrap {
        margin-bottom: 40px;
    }

    .wds-related-posts-wrapper {
        padding-top: 60px;
    }

    .hero-filter-wrapper .filter-btns-area {
        width: 100%;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-filter-wrapper .filter-btns-area::before {
        display: none;
    }

    .hero-filter-wrapper .filter-btns-area::after {
        inset: 0;
    }

    .hero-filter-wrapper .filter-desc {
        font-size: 12px;
    }

    .hero-filter-wrapper .filter-btns-wrap {
        gap: 8px;
    }

    .hero-filter-wrapper .filter-btn {
        padding: 8px;
        font-size: 12px;
        border-radius: 10px;
    }

    .wds-button,
    .wds-form-wrap .ff-el-group .ff-btn-submit {
        padding: 12px 20px;
    }

    .wds-button.button-outline {
        padding: 11px 20px;
    }

    .wds-subtitle {
        font-size: 14px;
        padding: 10px 20px;
    }

    .feature-img-wrap {
        border: none;
        border-radius: 5px;
        padding: 4px;
    }

    .feature-img-wrap::before {
        filter: blur(5px);
        opacity: 1;
        border-radius: 15px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .wds-facts-cards .single-facts-card {
        padding: 24px;
    }

    .wds-cost-calculation {
        padding: 24px 14px;
        gap: 20px;
    }

    .wds-cost-calculation .wrapper-title {
        font-size: 12px;
        width: 135px;
        height: 34px;
    }

    .wds-cost-calculation .wrapper-title img {
        max-width: 75px;
    }

    .wds-cost-calculation h5 {
        font-size: 14px;
    }

    .wds-cost-calculation .app-lists-wrap, .wds-cost-calculation .calculation-result, .wds-cost-calculation .total-user, .wds-cost-calculation .feedback-card {
        padding: 20px;
    }

    .wds-cost-calculation .user-count {
        height: 12px;
    }

    .wds-cost-calculation .user-count::-webkit-slider-thumb {
        height: 12px;
    }

    .wds-cost-calculation .user-count::-moz-range-thumb {
        height: 12px
    }

    .wds-cost-calculation .app-lists {
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }

    .wds-cost-calculation .user-range-value {
        font-size: 15px;
        margin-top: 12px;
    }

    .wds-cost-calculation .single-app button {
        padding: 9px;
        border-radius: 12px;
    }

    .wds-cost-calculation .single-app img {
        width: 28px;
        height: 28px;
    }

    .wds-cost-calculation .app-list-title {
        margin: 0 0 16px;
    }

    .wds-cost-calculation .result-title {
        font-size: 18px;
    }

    .wds-cost-calculation .calculation-result p, .wds-cost-calculation .reviewer-content .reviewer-desc {
        font-size: 14px;
    }

    .wds-cost-calculation .reviewer-photo img {
        width: 50px;
        height: 50px;
    }

    .wds-cost-calculation .feedback-card {
        gap: 16px;
    }

    .wds-cost-calculation .reviewer-content .rating {
        font-size: 12px;
    }

    .wds-cost-calculation .reviewer-content .flex-top {
        gap: 7px;
        flex-direction: column;
        align-items: flex-start;
    }

    .wds-cost-calculation .reviewer-content .review-name {
        font-size: 12px;
    }

    .wds-consulting-cards .card-title {
        font-size: 20px;
    }

    .wds-consulting-cards .single-consulting-card {
        padding: 24px;
    }

    .wds-feature-cards .card-title {
        font-size: 18px;
    }

    .feature-img-two-wrap {
        border-radius: 15px;
    }

    .feature-img-two-wrap::before {
        filter: blur(6px);
        border-radius: 15px;
    }

    .wds-form-wrap {
        padding: 24px;
    }

    .wds-form-wrap .ff-default .ff-el-form-control,
    .wds-form-wrap select.ff-el-form-control:not([size]):not([multiple]) {
        height: 40px;
        border-radius: 8px;
        font-size: 14px;
    }

    .wds-contact-info.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper {
        display: flex;
        text-align: left;
        gap: 20px;
    }
}