:root {
  --primary-color: #056bf1; /* Purple from the image */
  --text-color: #1a1a2e;
  --bg-color: #ffffff;
  --bg-blue-color: #89bafa2f;
  --transition: all 0.3s ease;
  /* --font-body: "Inter", sans-serif; */
  --font-family: "DM Sans", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --dark-navy-blue: #010e37;
  --fw-body: 400;
  --fw-heading: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.blog  .wfss-btn-wrap{
     text-align: center;
} 
.tnp-ajax p {
     font-size: 16px;
     line-height: 1.7;
     color: green;
     border: 2px solid green;
     padding: 15px;
     border-radius: 12px;
     margin-bottom: 25px;
}
.wpcf7-response-output {
    color: red;
    border-color: red !important;
}
.wpcf7-not-valid {
    border-color: red !important;
}
.submit-wrapper {
    display: flex;
    align-items: center;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-weight: var(--fw-body);
     user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.wfss-section-padding,
.wfss-about-page-section {
  padding: 30px 0;
}
p {
  font-weight: 400 !important;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading);
} */
/* section.wfss-inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #04040466;
} */
.wfss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}
.post-thumbnai img {
  border-radius: 20px;
}
.wfss-open-menu,
.wfss-close-menu {
  display: none;
}
/* Header Styles */
.wfss-header {
  background-color: #fff;
  padding: 15px 0;

  z-index: 1000;
}
.sticky
{
  box-shadow: 0 2px 10px rgb(0 0 0 / 50%);
  position: sticky;
  top: 0;
  animation: slideDown 0.5s ease-in-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.wfss-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.wfss-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.wfss-logo-icon {
  font-size: 24px;
  color: #0033cc; /* Dark blue icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
}

.wfss-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #056bf1; /* Dark blue text color */
}

/* Navigation */
.wfss-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.wfss-nav-link {
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
}
.wfss-current_page_item {
  color: #1a1a2e;
  border: 1px solid #1a1a2e;
  border-radius: 50px;
}
.wfss-nav-link i {
  font-size: 12px;
}
.current-menu-item > a {
  color: var(--primary-color) !important;
}
li:has(li.current-menu-item) > a,
body.single-services .service-menu > a,
body.tax-service_category .service-menu > a,
body.single-portfolio  .portfolios-menu > a{
    color: var(--primary-color) !important;
}
li a:hover {
  color: var(--primary-color) !important;
}

/* Dropdown */
.wfss-has-dropdown {
  position: relative;
}

.wfss-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
}

.wfss-has-dropdown:hover .wfss-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wfss-dropdown li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  transition: var(--transition);
}

.wfss-dropdown li a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

/* Creative Button Style - Hermosa effect */
.wfss-btn-wrap a {
  width: fit-content;
  padding: 0 2rem;
  height: 50px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;

  /* User Variables */
  --ha-ctv-btn-txt-clr: #ffffff;
  --ha-ctv-btn-bg-clr: #046cf1;
  --ha-ctv-btn-bg-hvr-clr: #000000;

  /* Apply variables */
  color: var(--ha-ctv-btn-txt-clr);
  background-color: var(--ha-ctv-btn-bg-clr);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover: Keep text white */
.wfss-btn-wrap .wfss-btn-hermosa.wfss-btn-effect:hover {
  color: #fff;
}

/* BEFORE element (big circular reveal) */
.wfss-btn-wrap .wfss-btn-hermosa.wfss-btn-effect::before {
  top: -110%;
  left: -10%;
  padding-bottom: 120%;
  width: 120%;
  height: 0;
  border-radius: 50%;
  background: var(--ha-ctv-btn-bg-hvr-clr);
  content: "";
  position: absolute;
  z-index: -1;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

/* Hover animation for BEFORE */
.wfss-btn-wrap .wfss-btn-hermosa.wfss-btn-effect:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* AFTER element (top slide reveal) */
.wfss-btn-wrap .wfss-btn-hermosa.wfss-btn-effect::after {
  background: var(--ha-ctv-btn-bg-hvr-clr);
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

/* Hover animation for AFTER */
.wfss-btn-wrap .wfss-btn-hermosa.wfss-btn-effect:hover::after {
  transition-delay: 0.4s;
  transition-timing-function: linear;
  transition-duration: 0.05s;
  transform: translate3d(0, 0, 0);
}

/* Mobile Toggle */
.wfss-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}
#wfss-primary-menu {
  list-style: none;
  padding: 0;
}

#wfss-primary-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  transition: var(--transition);
}
/* Mobile Responsive */
@media (max-width: 991px) {
  .wfss-open-menu {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
  }

  /* Mobile menu container */
  #wfss-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* max-width: 300px; */
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 9999;
  }

  /* Show panel when active */
  #wfss-mobile-menu.active {
    right: 0;
  }

  /* Close button inside drawer */
  .wfss-close-menu {
    display: block;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 20px;
    float: right;
  }

  /* Mobile menu links */
  #wfss-primary-menu {
    list-style: none;
    padding: 0;
  }

  #wfss-primary-menu li {
    margin-bottom: 15px;
  }

  #wfss-primary-menu a {
    font-size: 18px;
    color: #1a1a2e;
    text-decoration: none;
  }

  /* Hide desktop menu */
  .wfss-navbar .menu,
  .wfss-nav-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .wfss-mobile-toggle {
    display: block;
    z-index: 1001; /* Ensure above menu */
  }

  .wfss-nav-menu {
    position: fixed;
    display: block;
    top: 20%;
    /* right: -100%; */
    width: 80%;
    width: 100%;
    max-width: 300px;
    /* background: #fff; */
    flex-direction: column;
    padding: 150px 30px 0 30px;
    /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); */
    transition: var(--transition);

    z-index: 1000;
  }

  .wfss-navbar.wfss-active .wfss-nav-menu {
    right: 0;
  }

  .wfss-nav-menu li {
    width: 100%;
  }

  .wfss-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none; /* Hide by default on mobile, can be toggled with JS if needed, or just show all */
    padding-left: 20px;
    /* background-color: #f9f9f9; */
  }

  .wfss-has-dropdown:hover .wfss-dropdown {
    display: block;
  }

  /* Optional: Ensure header actions stay accessible */
  .wfss-header-actions {
    /* display: flex;
    align-items: center;
    gap: 15px; */
    display: none;
  }
  .wfss-success-dote-left {
    display: none;
  }
}

@media (max-width: 480px) {
  .wfss-mas-creative-btn {
    width: auto;
    height: auto;
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* Hero Section */
.wfss-hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* height: 100vh; */
}
.wfss-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    
 
     background-image: url('/wp-content/uploads/2026/02/Group-1171279145.png');
     background-repeat: no-repeat;
     background-position: top;
     background-size: cover;
     width: 50% ;
     height: 100%;
    z-index: 2;
}
.wfss-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background-image: url('/wp-content/uploads/2026/02/banner-bottom-pattn.svg');
     background-repeat: no-repeat;
     background-position: bottom;
     background-size: cover;
     width: 100%;
    z-index: 2;
}

.wfss-hero-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}

.wfss-hero-content {
  flex: 1;
  position: relative;
  /* max-height: 400px; */
}

.wfss-hero-subtitle {
  display: block;
  color: var(--primary-color); /* Purple from design */
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home .wfss-hero-title {
  font-size: 56px;
  line-height: 1.1;
  color: #0b0b1f; /* Dark color */
  font-weight: 700;
  margin-bottom: 0 !important;
}

.wfss-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
  max-width: 550px;
}

/* Hero Image Area */
.wfss-hero-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.wfss-hero-img {
  max-width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  /* max-height: 480px; */
}

/* Decorative Elements */
.wfss-hero-bg-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80%;
  height: 100%;
  background-color: #f0ecff; /* Light purple accent */
  border-radius: 30px;
  z-index: 1;
  transform: rotate(3deg);
}

/* Dots Pattern */
.wfss-hero-dots-left,
.wfss-hero-dots-right {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#0033cc 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
}

.wfss-hero-dots-left {
  left: 0px;
  bottom: 0;
  height: 200px;
  width: 80px;
}

.wfss-hero-dots-right {
  top: -40px;
  right: 12%;
  width: 200px;
  height: 200px;
}

/* Responsive Hero */
@media (max-width: 991px) {
  .wfss-hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .wfss-hero-image-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
  }

  .wfss-hero-title {
    font-size: 42px;
  }

  .wfss-hero-description {
    margin: 0 auto 30px;
  }

  .wfss-hero-bg-shape {
    width: 100%;
    right: 0;
    transform: rotate(0);
  }
}

@media (max-width: 480px) {
  .wfss-hero-title {
    font-size: 32px;
  }
}

/* About Section */
.wfss-about-section {
  padding: 100px 0;
  background-color: #89bafa2f; /* or #f9f9f9 base on preference, image looks white/light gray */
}

.wfss-about-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.wfss-about-images {
  flex: 1;
  /* position: relative;/ */
  /* Determine height or aspect ratio if needed, but img sizing might suffice */
  min-height: 500px;
}

.wfss-about-images img {
  width: 90%;
}

/* When TWO images exist */
.wfss-about-images:has(img:nth-of-type(2)) img:nth-of-type(1) {
  width: 70%;
}

.wfss-about-images:has(img:nth-of-type(2)) img:nth-of-type(2) {
  width: 30%;
}

.wfss-about-img-group {
  /* width: 70%; */
  border-radius: 20px;
  /* position: absolute; */
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.wfss-about-img-single {
  width: 55%;
  border-radius: 20px;
  /* position: absolute; */
  bottom: 0;
  right: 0;
  z-index: 3; /* Above group image */
  border: 5px solid #fff; /* White border to separate */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wfss-about-pattern {
  position: absolute;
  display: none;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#056bf1 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 0;
}

.wfss-about-content {
  flex: 1;
}

.wfss-about-subtitle {
  display: block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.wfss-about-title {
  font-size: 48px;
  line-height: 1.2;
  color: #0b0b1f; /* Dark navy */
  font-weight: 700;
  margin-bottom: 30px;
}

.wfss-about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* Obsolete .about-btn styles removed */

/* Responsive About */
@media (max-width: 991px) {
  .wfss-about-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .wfss-about-images {
    width: 100%;
    min-height: 400px;
    /* Center imgs slightly */
    display: flex;
    justify-content: center;
  }

  .wfss-about-img-group {
    width: 60%;
    /* left: 5%; */
  }

  .wfss-about-img-single {
    width: 50%;
    /* right: 5%; */
  }

  .wfss-about-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .wfss-about-images {
    min-height: 300px;
  }
}

/* Services Section */
.wfss-services-section {
  padding: 100px 0;
  background-color: #fff;
  /* text-align: center; */
}

.wfss-section-header {
  margin-bottom: 60px;
  text-align: center;
}

.wfss-text-center {
  text-align: center;
}

.wfss-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b0b1f;
  line-height: 1.2;
}

.wfss-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.wfss-service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  gap: 25px;
  transition: var(--transition);
}

.wfss-service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  transform: translateY(-5px);
}

.wfss-service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #056bf1; /* Primary Blue */
}

/* Optional: Add a subtle background detail to icon if needed to match image more closely, 
   but FontAwesome icons are text-based. */

.wfss-service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 15px;
}

.wfss-service-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.wfss-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b0b1f;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.wfss-read-more i {
  font-size: 12px;
  transition: var(--transition);
}

.wfss-read-more:hover {
  color: #056bf1;
}

.wfss-read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Services */
@media (max-width: 991px) {
  .wfss-services-grid {
    grid-template-columns: 1fr;
  }

  .wfss-section-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .wfss-service-card {
    flex-direction: column;
    padding: 30px;
  }

  .wfss-service-icon {
    margin-bottom: 10px;
  }
}

/* Success Section */
.wfss-success-section {
  padding: 100px 0;
  background-image: url("/wp-content/uploads/2026/01/pattan-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  /* color: #fff !important; */
}
.wfss-success-section .wfss-about-subtitle,
.wfss-success-section .wfss-section-title {
  color: #fff !important;
}
/* .wfss-success-dote-left {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100px;
  height: 200px;
  background-image: radial-gradient(#49aef2 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
} */
.wfss-success-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

.wfss-success-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  width: 25%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
}

.wfss-success-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  transform: translateY(-5px);
}

.wfss-stat-number {
  font-size: 65px;
  font-weight: 900;
  color: #046cf1;
  font-style: normal;
  line-height: normal;
  margin-bottom: 15px;
}

.wfss-stat-label {
color: #000;
text-align: center;
font-family: "DM Sans";
font-size: 20px;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
}

/* Responsive Success Section */
@media (max-width: 991px) {
  .wfss-success-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 20px;
  }
  .wfss-success-card {
    width: calc(50% - 20px);
  }
  .tnp-subscription input[type="submit"] {
    width: auto !important;
  }
}
@media (max-width: 576px) {
  .wfss-success-card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .wfss-success-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    flex-direction: column;
  }
  .wfss-success-card {
    width: 100%;
  }

  .wfss-stat-number {
    font-size: 42px;
  }
  .tnp-subscription input[type="submit"] {
    width: auto !important;
  }
}

/* Discovery Section */
.wfss-discovery-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.wfss-discovery-wrapper {
    display: flex;
    /* align-items: center; */
    gap: 50px;
}

.wfss-discovery-image {
  flex: 1;
  position: relative;
}

.wfss-discovery-image img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wfss-discovery-content {
  flex: 1;
  /* min-width: 50%; */
}

.wfss-discovery-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  /* margin-bottom: 30px; */
}

.wfss-discovery-text p:last-child{
  margin-bottom: 0;
}

/* Accordion */
.wfss-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.wfss-accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.wfss-accordion-header {
  padding: 20px;
  background: var(--bg-blue-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #89bafa2f;
}

.wfss-accordion-header:hover {
  background-color: #f2f2f2;
}

.wfss-accordion-icon {
  font-size: 20px;
  color: #056bf1;
  width: 30px;
  display: flex;
  justify-content: center;
}

.wfss-accordion-header h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #0b0b1f;
    margin-bottom: 0;
}

.wfss-accordion-arrow {
  font-size: 14px;
  color: #056bf1;
  transition: transform 0.3s ease;
}

.wfss-accordion-body {
  padding: 0 25px 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.wfss-accordion-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  /* padding-top: 25px;
  padding-bottom: 20px; */
  /* padding-left: 25px; Align with text start */
}

/* Active State */
.wfss-accordion-item.wfss-active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* border-color: transparent; */
  border: 1px solid #056bf1;
}

.wfss-accordion-item.wfss-active .wfss-accordion-arrow {
  transform: rotate(180deg);
}
.wfss-accordion-item:not(.wfss-active) .wfss-accordion-body {
  display:none;
}
.wfss-accordion-item.wfss-active .wfss-accordion-body {
    /* max-height: 200px; */
    opacity: 1;
    max-height: initial;
    /* padding: 20px; */
}
.wfss-accordion-item .wfss-accordion-body {
  padding: 20px;
}
.wfss-accordion-item .wfss-accordion-body p:last-child{
  margin-bottom: 0;
}

/* Responsive Discovery */
@media (max-width: 991px) {
  .wfss-discovery-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .wfss-discovery-image {
    width: 100%;
  }
}
/* Why Choose Us Section */
.wfss-why-choose-section {
  padding: 100px 0;
  background-color: #89bafa2f;
  overflow: hidden; /* For shape containment if needed */
}

.wfss-why-choose-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.wfss-why-choose-image,
.wfss-why-choose-content {
  flex: 1;
}

.wfss-why-choose-image {
  position: relative;
  padding-left: 20px; /* Space for shape if needed */
  padding-bottom: 20px;
}

.wfss-why-choose-bg-shape {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  width: 25rem; /* Adjust based on look */
  height: 80%;
  background-color: #056bf1; /* Blue */
  z-index: 0;
  border-radius: 0 0 0 5px; /* Slight radius */
}

.wfss-why-choose-image img {
  width: 90%;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-left: 10%; /* Offset from left shape */
  margin-bottom: 10%; /* Offset from bottom shape */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wfss-why-choose-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.wfss-why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.wfss-why-choose-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0b0b1f;
}

.wfss-why-choose-list li i {
  color: #0033cc; /* Darker blue check */
  font-size: 18px;
}

/* Responsive Why Choose Us */
@media (max-width: 991px) {
  .wfss-why-choose-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .wfss-why-choose-bg-shape {
    width: 15rem;
    left: 1rem;
  }

  .wfss-why-choose-image img {
    width: 90%;
    margin-left: 5%;
  }
}

@media (max-width: 480px) {
  .wfss-why-choose-list {
    grid-template-columns: 1fr;
  }
}

/* Support Section */
.wfss-support-section {
  padding: 100px 0;
  background-color: var(--dark-navy-blue); /* Dark Navy Blue from image */
  color: #fff;
  overflow: hidden;
}

.wfss-support-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.wfss-support-content,
.wfss-support-visuals {
  flex: 1;
}

.wfss-support-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
}

.wfss-support-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
}

.wfss-support-text {
  font-size: 16px;
  line-height: 1.7;
  color: #b0b0b0; /* Light grey for contrast on dark */
  margin-bottom: 40px;
}

.wfss-support-feature-box {
  background: rgba(255, 255, 255, 0.03); /* Transparent dark effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.wfss-support-feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.wfss-support-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.wfss-support-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;
}

.wfss-support-icon {
  width: 60px;
  height: 60px;
  background-color: #056bf1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

/* Support Visuals */
.wfss-support-visuals {
  position: relative;
  /* Adjust height to accommodate image stacking */
  min-height: 600px;
}

.wfss-support-img-main {
  width: 70%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.wfss-support-img-sub {
  width: 45%;
  border-radius: 10px;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 3;
  object-fit: cover;
  border: 5px solid var(--dark-navy-blue); /* Match bg color for separation */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.wfss-support-bg-shape {
  position: absolute;
  top: 13rem;
  left: 5rem;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #056bf1;
  border-top-left-radius: 200px;
  z-index: 1;

  /* Animation */
  animation: bounceY 2s ease-in-out infinite;
}

/* Keyframes for Y-axis bounce */
@keyframes bounceY {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.wfss-support-dots {
  position: absolute;
  bottom: 7rem;
  right: 10rem;
  width: 120px;
  height: 60px;
  background-image: radial-gradient(#3c7eff 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
  animation: bouncex 2s ease-in-out infinite;
}

/* Keyframes for X-axis bounce */
@keyframes bouncex {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}

/* Responsive Support */
@media (max-width: 991px) {
  .wfss-support-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .wfss-support-visuals {
    width: 100%;
    min-height: 450px;
  }

  .wfss-support-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .wfss-support-visuals {
    min-height: 350px;
  }
  .wfss-support-img-sub {
    bottom: 0;
  }
}

/* 404 Error Page Styles */
.wfss-error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(11, 11, 31, 0.85), rgba(5, 107, 241, 0.85)),
    url("images/error-bg.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.wfss-error-content {
  max-width: 600px;
  margin: 0 auto;
}

.wfss-error-title {
  font-size: 150px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wfss-error-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.wfss-error-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .wfss-error-title {
    font-size: 100px;
  }

  .wfss-error-subtitle {
    font-size: 24px;
  }
}

/* Process Section */
.wfss-process-section {
  padding: 100px 0;
  background-color: #fff;
}

.wfss-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

/* Connecting Dashed Line */
.wfss-process-steps::before {
  content: "";
  position: absolute;
  top: 35px; /* Adjust based on circle size */
  left: 0;
  width: 80%;
  height: 2px;
  background-image: linear-gradient(to right, #e0e0e0 50%, transparent 50%);
  background-size: 15px 100%;
  z-index: 0;
}

.wfss-process-step {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: var(--transition);
}

.wfss-step-number {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #056bf1;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px transparent;
}
.wfss-step-content {
  width: 200px;
}
.wfss-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.wfss-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  overflow-wrap: break-word;
}

/* Hover Effects */
.wfss-process-step:hover .wfss-step-number {
  background-color: #056bf1; /* Blue background on hover */
  color: #fff;
  border-color: #056bf1;
  box-shadow: 0 10px 25px rgba(5, 107, 241, 0.3);
  transform: translateY(-5px);
}

.wfss-process-step:hover .wfss-step-content h3 {
  color: #056bf1;
}

/* Responsive Process */
@media (max-width: 991px) {
  .wfss-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .wfss-process-steps::before {
    display: none; /* Hide dashed line on tablet/mobile */
  }
}

@media (max-width: 480px) {
  .wfss-process-steps {
    grid-template-columns: 1fr;
  }
}

.wfss-newsletter-section {
  padding: 30px 0;
}

.wfss-newsletter-content {
  padding: 60px;
  margin: 0 auto;
  background-image: url("/wp-content/uploads/2026/01/Breaker.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  border-radius: 40px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.newsletter-content-wrapper {
  text-align: start;
  flex: 1;
}

.wfss-newsletter-subtitle {
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wfss-newsletter-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0;
}

/* Wrapper alignment */
.wfss-newsletter-form {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.tnp-subscription {
  width: 100%;
  max-width: 500px;
}

/* Form container */
.tnp-subscription form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.tnp-field-email {
  flex: 1;
  width: 100%;
}

/* Email input */
.tnp-subscription .tnp-email {
  width: 100%;
  height: 60px;
  padding: 0 25px !important;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
  font-size: 16px;
  outline: none;
  color: #333;
}

/* Placeholder color */
.tnp-subscription .tnp-email::placeholder {
  color: #666 !important;
}

/* Button wrapper */
.tnp-field-button {
  flex-shrink: 0;
}

/* Subscribe button */
.tnp-subscription .tnp-submit {
  height: 60px !important; /* Match input height */
  padding: 0 35px !important;
  border-radius: 30px;
  border: none;
  background: #056bf1 !important;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tnp-field-email label {
  display: none !important;
}

/* Button hover */
.tnp-subscription .tnp-submit:hover {
  background: #004bb5 !important;
  transform: translateY(-2px);
}

/* Hide default label */
.tnp-subscription label {
  display: none !important;
}
.wfss-footer {
  background-color: var(--dark-navy-blue);
  padding: 80px 0 30px;
  border-top: 1px solid #eee;
}

.wfss-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 786px) {
  .wfss-newsletter-content,
  .wfss-newsletter-form,
  .wfss-newsletter-form form {
    flex-direction: column;
  }
  .wfss-newsletter-content {
    gap: 20px;
    /* font-size: 28px !important; */
  }
  .wfss-newsletter-title {
    font-size: 28px !important;
  }
}
/* Brand Column */
.wfss-footer-brand {
  padding-right: 40px;
}

.wfss-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #0b0b1f; /* Dark Blue */
  margin-bottom: 25px;
  max-width: 200px;
}

.wfss-footer-logo i {
  color: #056bf1; /* Brand Blue */
}

.wfss-footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  /* margin-bottom: 30px; */
}

.wfss-social-icons {
  display: flex;
  gap: 15px;
}

.wfss-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #08153c;
  color: #fff;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid;
}

.wfss-social-icons a:hover {
  background-color: #056bf1;
  color: #fff;
  border-color: #056bf1;
}

/* Footer Links */
.wfss-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.wfss-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wfss-footer-links li {
  margin-bottom: 15px;
}

.wfss-footer-links a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

.wfss-footer-links a:hover {
  color: #056bf1;
}

/* Footer Bottom */
.wfss-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
ul#menu-privacy-policy-menu {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul#menu-privacy-policy-menu li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
ul#menu-privacy-policy-menu li a:hover {
  color: #056bf1;
}
@media (max-width: 576px) {
  .wfss-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Responsive Footer */
@media (max-width: 991px) {
  .wfss-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .wfss-footer-grid {
    grid-template-columns: 1fr;
  }

  .wfss-footer-brand {
    padding-right: 0;
  }
}

/* footer contect section */
.wfss-footer-contact-detils {
  margin-bottom: 20px;
  color: #ffffff;
}
.wfss-contact-details p {
  margin: 0 0 0.5rem 0;
  font-size: 14px;
  line-height: 1.6;
}
.wfss-contact-details h5 {
  font-size: 16px !important;
  font-weight: 600;
  margin-bottom: 20px !important;
  line-height: 1.5;
}
/* Process Section */
.wfss-process-section {
  padding: 30px 0;
  position: relative;
  background-color: #fff;
}
.wfss-process-section::before {
  content: "";
  position: absolute;
  top: 59%; /* Approximate center of the timeline part */
  left: 0;
  width: 100%;
  height: 2px;
  background: #c7e5ff; /* Subtle gray line */
  z-index: 0;
  transform: translateY(-50%);
}
.wfss-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

/* Connecting Dashed Line */
.wfss-process-steps::before {
  content: "";
  position: absolute;
  top: 35px; /* Adjust based on circle size */
  left: 10%;
  width: 80%;
  height: 2px;
  background-image: linear-gradient(to right, #e0e0e0 50%, transparent 50%);
  background-size: 15px 100%;
  z-index: 0;
}

.wfss-process-step {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: var(--transition);
}

.wfss-step-number {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #056bf1;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px transparent;
}
.wfss-step-content {
  width: 200px;
}
.wfss-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.wfss-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  overflow-wrap: break-word;
}

/* Hover Effects */
/* .wfss-process-step:hover .wfss-step-number {
  background-color: #056bf1; 
  color: #fff;
  border-color: #056bf1;
  box-shadow: 0 10px 25px rgba(5, 107, 241, 0.3);
  transform: translateY(-5px);
} */

.wfss-process-step:hover .wfss-step-content h3 {
  color: #056bf1;
}

/* Responsive Process */
@media (max-width: 991px) {
  .wfss-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .wfss-process-steps::before {
    display: none; /* Hide dashed line on tablet/mobile */
  }
}

@media (max-width: 480px) {
  .wfss-process-steps {
    grid-template-columns: 1fr;
  }
}

/* Testimonial Section */
.wfss-testimonial-section {
  padding: 100px 0;
  background-color: #89bafa2f; /* White bg */
}

.wfss-testimonial-card {
  background: #fff;
  border: 1px solid #eef2f6; /* Very subtle border usually seen in ref */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Soft shadow */
  transition: var(--transition);
  height: 100%; /* Equal height */
}

.wfss-testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Stronger shadow on hover */
  transform: translateY(-5px);
}

.wfss-quote-icon {
  font-size: 40px;
  color: var(--primary-color); /* Purple quote icon from ref */
  margin-bottom: 25px;
}

.wfss-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.wfss-testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wfss-testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.wfss-user-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b0b1f;
  margin: 0 0 5px;
}

.wfss-user-info span {
  font-size: 14px;
  color: #056bf1; /* Blue title */
  font-weight: 500;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d1;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #056bf1; /* Active blue dot */
  width: 30px; /* Elongated active dot */
  border-radius: 6px;
}

/* Swiper Navigation Arrows css */
.swiper-button-next,
.swiper-button-prev {
  color: #0b0b1f; /* Dark blue arrows */
  width: 50px; /* Increased size for better touch/vis */
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 55%;
  display: flex; /* Center icon */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Hover Animation - Clockwise spinning border lines */
.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #056bf1;
  border-right-color: #056bf1;
  /* This creates a semi-circle line */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #056bf1;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  opacity: 1;
  animation: spinRound 1s linear infinite;
}

@keyframes spinRound {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  body .tnp-subscription input[type="submit"],
  body .tnp-profile input[type="submit"] {
    width: auto !important;
  }
}

/* Portfolio Section */
.wfss-portfolio-section {
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #edeff2;
}
.wfss-protfolio-listing-section {
  padding: 30px 0;
  background-color: #fff;
}
.wfss-portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto 3rem auto;
    /* background-color: #f7fdff; */
    width: fit-content;
    /* padding: 0.7rem 2.5rem; */
    /* border: 1px solid #e6edf3; */
    border-radius: 100px;
}

.wfss-filter-btn {
  color: #0b0b1f;
  font-size: 16px;

  cursor: pointer;
  padding: 5px 15px;
  position: relative;
  transition: var(--transition);
  background-color: #fff;
  border: none;
  border-radius: 50px;
}

.wfss-filter-btn:hover,
.wfss-filter-btn.wfss-active {
  color: #056bf1;
  border: 0.5px solid #046cf1;
}

.wfss-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wfss-portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* height: 300px; */
    cursor: pointer;
}

.wfss-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wfss-portfolio-item:hover img {
  transform: scale(1.1);
}

/* Optional Overlay on Hover */
.wfss-portfolio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  
  padding: 20px;
  background:  rgba(0, 0, 0, 0.8);
  color: #fff;
  transition: bottom 0.3s ease;
}

.wfss-portfolio-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wfss-portfolio-item:hover .wfss-portfolio-overlay {
  bottom: 0;
}

.wfss-portfolio-overlay h3 {
  font-size: 20px;
  margin: 0;
}

/* Responsive Portfolio */
@media (max-width: 991px) {
  .wfss-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wfss-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .wfss-portfolio-filters {
    gap: 15px;
  }

  .wfss-filter-btn {
    font-size: 14px;
  }
}

/* Inner Banner Styles */
.wfss-inner-banner {
  position: relative;
  padding: 20px 0 0 0;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.wfss-inner-banner .wfss-container {
  max-width: none;
}
.wfss-inner-banner-content {
    position: relative;
    background-image: url("/wp-content/uploads/2026/01/inner-banner-image.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 2;
    padding: 120px 0 120px 0px;
    /* max-width: 1520px; */
    border: none;
    border-radius: 40px 40px 0 0;
    margin: 0 20px;
}

.wfss-inner-banner-title {
  font-size: 56px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 30px;
  letter-spacing: -1px;
  position: relative;
}
.wfss-inner-banner-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 4px;
  background-image: url("/wp-content/uploads/2026/01/Line-3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 768px) {
  .wfss-inner-banner-title {
    font-size: 48px;
  }
  .wfss-inner-banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 0px;
    /* max-width: 1520px; */
    border: none;
    border-radius: 30px 30px 0 0;
  }
}

.wfss-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.wfss-breadcrumb li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.wfss-breadcrumb li a {
  color: #000;
  text-decoration: none;
  transition: var(--transition);
}

.wfss-breadcrumb li a:hover {
  color: var(--primary-color);
}

.wfss-breadcrumb li:not(:last-child)::after {
    content: "//";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    margin-left: 10px;
    font-size: 14px;
    color: #000;
    margin-right: 10px;
}

.wfss-breadcrumb li.active {
  color: #000;
}

/* Decorative Shapes */
.wfss-banner-shape-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(5, 107, 241, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.wfss-banner-shape-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(106, 53, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Use a Pseudo element for a subtle pattern overlay if desired */
/* .wfss-inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
} */

/* Responsive Inner Banner */
@media (max-width: 991px) {
  /* .wfss-inner-banner {
    padding: 100px 0 80px;
  } */

  .wfss-inner-banner-title {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .wfss-inner-banner {
    padding: 10px 0 10px;
  }

  .wfss-inner-banner-title {
    font-size: 32px;
  }

  .wfss-breadcrumb li {
    font-size: 14px;
  }
}

/* Isomorphic About Section & Tabs */
.wfss-about-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.wfss-about-image-col {
  flex: 1;
  position: relative;
}

.wfss-about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden; /* ensures the image clips the rounded corners */
}

.wfss-about-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block; /* removes bottom space */
  position: relative;
  z-index: 2;
}

/* Blue Shape Overlay/Corner */
.wfss-about-img-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background-color: #056bf1; /* Bright Blue */
  border-radius: 50%;
  z-index: 1;
}

.wfss-about-content-col {
  flex: 1;
}

/* Typography Overrides for this section if needed */
.wfss-about-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0b0b1f;
  margin-top: 10px;
  margin-bottom: 25px;
}

/* Tabs Styling */
.wfss-about-tabs {
    margin: 35px 0;
    margin-bottom: 0;
}

.wfss-tab-buttons {
  display: flex;
  gap: 40px;
  border-bottom: 2px solid #edeff2;
  margin-bottom: 25px;
}

.wfss-tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #0b0b1f;
  padding-bottom: 15px;
  cursor: pointer;
  position: relative;
  margin-bottom: -2px; /* Pull down to cover border */
  transition: color 0.3s ease;
}

/* Active Tab Indicator */
.wfss-tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #056bf1;
  transition: width 0.3s ease;
}

.wfss-tab-btn.active {
  color: #056bf1;
}

.wfss-tab-btn.active::after {
  width: 100%;
}

.wfss-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.wfss-tab-content.active {
  display: block;
}

.wfss-tab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .wfss-about-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .wfss-about-img-shape {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .wfss-tab-buttons {
    gap: 20px;
  }

  .wfss-tab-btn {
    font-size: 16px;
  }

  .wfss-about-title {
    font-size: 36px;
  }
}

/* Process Section */
.wfss-process-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

.wfss-process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
  gap: 20px;
}

/* Connecting Line (dashed curve simulation or straight) */
/* We will use a straight line for simplicity and responsiveness first, or a wave if possible. 
   Process image has a sine wave. 
   Simulating a sine wave is complex. We'll use a straight dashed line behind the icons.
*/
.wfss-process-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  transform: translateY(-50%);
  display: none; /* We will handle connections per item if needed or generic line */
}

/* Let's try a central line approach */
.wfss-process-item {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  min-width: 0; /* Prevention for flex overflow */
}

.wfss-process-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  border: 2px solid #c7e5ff;
  transition: all 0.3s ease;
}
.wfss-process-icon img {
  width: 40px;
  height: auto;
}
.wfss-process-icon {
  /* padding: 20px; */
  position: relative;
}
.wfss-process-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  z-index: 5;
  border-top: 3px solid transparent;
}
.wfss-process-top .wfss-process-content {
  bottom: 50%;
  margin-bottom: 70px; /* 50% + icon half + spacing */
}

.wfss-process-bottom .wfss-process-content {
  top: 50%;
  margin-top: 70px;
}
.wfss-process-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.wfss-process-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Alternating positioning */
/* .wfss-process-top {
  padding-bottom: 60px; 
} */

/* .wfss-process-top .wfss-process-content {
  margin-bottom: 20px;
} */
.wfss-process-content::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  display: block;
}

.wfss-process-top .wfss-process-content::before {
  bottom: -9px;
}

.wfss-process-bottom .wfss-process-content::before {
  top: -12px;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}
.wfss-process-top .wfss-process-icon {
  margin-top: auto; /* Push icon to bottom */
}

.wfss-process-bottom {
  padding-top: 60px;
}

/* .wfss-process-bottom .wfss-process-content {
  margin-top: 20px;
} */

.wfss-process-bottom .wfss-process-icon {
  margin-bottom: auto; /* Push icon to top */
}

/* Connecting Line segment */
.wfss-process-item::after {
  /* content: ""; */
  position: absolute;
  height: 4px;
  background: #e0e0e0;
  top: 50%; /* This needs adjustment based on layout */
  left: 50%;
  width: 80%;
  margin: 0 auto;
  z-index: -1;
}

/* Let's redo the layout strategy for alignment */
.wfss-process-wrapper {
  align-items: center; /* This centers everything vertically */
  height: 500px; /* Fixed height to allow up/down positioning */
}

.wfss-process-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Specific item adjustments */
.wfss-process-top {
  justify-content: flex-start; /* Content at top */
}

.wfss-process-bottom {
  justify-content: flex-end; /* Content at bottom */
}

/* Now Place Icons */
/* Top items: Content, then Icon at the bottom (center of wrapper) */
/* Bottom items: Icon at the top (center of wrapper), then Content */

/* We need the icons to align perfectly in the middle line of the wrapper */
/* Wrapper height 400px -> Middle is 200px. */

.wfss-process-icon {
  /* Common styles */
  flex-shrink: 0;
}

.wfss-process-top .wfss-process-icon {
  margin-top: auto; /* Push to bottom of the flex item */
  transform: translateY(
    50%
  ); /* Push down half its height to center on the bottom edge line? */
  /* Wait, if justify-content is flex-start, items stack at top. */
  /* We want the icon to be at the exact vertical center of the wrapper. */

  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.wfss-process-bottom .wfss-process-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .wfss-process-top .wfss-process-content {
  padding-bottom: 120px;
} */

/* .wfss-process-bottom .wfss-process-content {
  padding-top: 120px;
} */

/* Connector Line */
/* .wfss-process-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  width: 85%;
  margin: 0 auto;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 50 5 100 5 T 200 5' stroke='%23ddd' stroke-width='4' fill='none' /%3E%3C/svg%3E");
  background: #f0f0f0;
  height: 6px;
  border-radius: 10px;
  z-index: 0;
  transform: translateY(-50%);
} */

/* Custom Colors */
/* Idea */
/* .wfss-process-item .wfss-process-icon { */
/* border-color: #056bf1; */
/* color: #17c3b2; */
/* } */
.wfss-process-item h3 {
  color: #056bf1;
}
/* Arrows between steps? The image has triangles on the line. */
/* .wfss-process-item::before {
  content: "\f0da"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  color: #ccc;
  z-index: 1;
  font-size: 20px;
  display: block;
} */

.wfss-process-item:last-child::before,
.wfss-process-item:last-child::after {
  display: none;
}

/* Hover Effects */
/* .wfss-process-item:hover .wfss-process-icon {
  transform: translate(-50%, -50%) scale(1.1); 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

/* .wfss-process-top:hover .wfss-process-icon {
  transform: translate(-50%, 50%) scale(1.1);
} */

/* Responsive */
@media (max-width: 991px) {
  .wfss-process-top,
  .wfss-process-bottom {
    display: block;
  }
  .wfss-process-wrapper {
    flex-direction: column;
    height: auto;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start; /* Left align for vertical timeline */
    padding-left: 30px;
  }

  .wfss-process-wrapper::after {
    width: 4px;
    height: 100%;
    top: 0;
    left: 30px; /* Align with icon center if icon is e.g. 60px wide? */
    bottom: auto;
    transform: translateX(-50%);
  }

  .wfss-process-item {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    height: auto;
    padding: 0;
  }
  .wfss-process-content::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    display: block;
  }

  .wfss-process-top,
  .wfss-process-bottom {
    /* justify-content: flex-start; */
    padding: 0;
  }

  .wfss-process-icon {
    position: static;
    transform: none;
    margin: 0 20px 0 0;
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-width: 3px;

    /* Reset alignment overrides */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* .wfss-process-top:hover .wfss-process-icon,
  .wfss-process-bottom:hover .wfss-process-icon,
  .wfss-process-item:hover .wfss-process-icon {
    transform: scale(1.1);
  } */

  .wfss-process-content {
    padding: 0; /* Remove top/bottom spacing */
    flex: 1;
    text-align: left;
    position: inherit;
    transform: none;
  }

  /* Remove horizontal arrows */
  .wfss-process-item::before {
    display: none;
  }

  /* Fix line alignment */
  .wfss-process-wrapper::after {
    left: 60px; /* 30px padding + 30px (half of icon width) */
    width: 4px; /* Vertical line width */
    margin-left: -2px; /* Center it */
  }

  /* Move wrapper padding to accommodate the line */
  .wfss-process-wrapper {
    padding-left: 0;
  }

  .wfss-process-item {
    padding-left: 0;
  }

  /* Adjust line position relative to icons which are static now.
      Actually, if icons are static in flex-row, we can't easily put a continuous line behind them unless we wrap the icons or use absolute again.
      
      Simpler Mobile Layout:
      Just list them. Remove the detailed timeline line or make a simple left border.
   */

  .wfss-process-wrapper::after {
    display: none;
  }

  .wfss-process-wrapper {
    gap: 30px;
  }

  .wfss-process-card {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
}

/* Why Choose Us Section (Skills) */
.wfss-why-choose-section {
  padding: 100px 0;
  background-color: #fff;
}

.wfss-why-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.wfss-why-content {
  flex: 1;
}

.wfss-why-content .wfss-section-title {
  font-size: 48px;
  margin-bottom: 25px;
}

.wfss-why-skills {
  flex: 1;
  /* padding-left: 20px; */
}

.wfss-skill-item {
  margin-bottom: 30px;
}

.wfss-skill-item:last-child {
  margin-bottom: 0;
}

.wfss-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.wfss-skill-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b0b1f;
}

.wfss-skill-percentage {
  font-size: 16px;
  font-weight: 700;
  color: #0b0b1f;
}

.wfss-skill-bar {
  width: 100%;
  height: 8px;
  background-color: #eef1f6; /* Light grey track */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.wfss-skill-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #056bf1; /* Primary Blue */
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

/* Responsive Why Choose Us */
@media (max-width: 991px) {
  .wfss-why-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .wfss-why-skills {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .wfss-why-content .wfss-section-title {
    font-size: 36px;
  }
}

/* Features Section */
.wfss-features-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.wfss-features-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.wfss-features-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.wfss-feature-item {
  text-align: center;
  padding: 0 20px;
}

.wfss-feature-icon {
  width: 60px;
  height: 60px;
  background-color: #056bf1;
  color: #fff;
  font-size: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(5, 107, 241, 0.3);
}

.wfss-feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 10px;
}

.wfss-feature-item div {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.wfss-feature-item div p:last-child{
  margin-bottom: 0;
}

.wfss-features-image {
  flex: 1.5;
  text-align: center;
}

.wfss-features-image img {
  max-width: 100%;
  border-radius: 20px;
}

/*  */
/* Blog Section Styles */
/* .wfss-blog-section {
  padding: 100px 0;
  background-color: var(--bg-blue-color);
}

.wfss-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.wfss-blog-list-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;

}
.wfss-blog-list-section {
  margin-bottom: 5rem;
}

.wfss-blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.wfss-blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

.wfss-blog-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.wfss-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wfss-blog-card:hover .wfss-blog-img-wrapper img {
  transform: scale(1.1);
}

.wfss-blog-content {
  padding: 20px 0;
}

.wfss-blog-content h3 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.wfss-blog-content h3 a {
  font-size: 20px;
  font-weight: 700;
  color: #0b0b1f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wfss-blog-content h3 a:hover {
  color: #056bf1;
} */

/* .wfss-blog-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */

.wfss-blog-footer {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfss-blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wfss-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.wfss-author-info {
  display: flex;
  flex-direction: column;
}

.wfss-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0b0b1f;
}

.wfss-post-date {
  font-size: 12px;
  color: #888;
}

/* Responsive Blog */
@media (max-width: 991px) {
  .wfss-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wfss-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------- */

/* Blog Section Styles */
.wfss-blog-section {
  padding: 100px 0;
  background-color: #fff;
}

.wfss-blog-grid , .wfss-blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* margin-top: 50px; */
}

.wfss-blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  /* padding: 20px; */
  background: #fff;
}

.wfss-blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

.wfss-blog-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  /* border-radius: 30px; */
}

.wfss-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* border-radius: 30px; */
}

.wfss-blog-card:hover .wfss-blog-img-wrapper img {
  transform: scale(1.1);
}
     .wfss-blog-content
{
  padding: 20px;
}
.wfss-blog-content
.wfss-blog-content h3 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.wfss-blog-content h3 a {
  font-size: 20px;
  font-weight: 700;

  color: #0b0b1f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wfss-blog-content h3 a:hover {
  color: #056bf1;
}

.wfss-blog-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  /* Limit text if needed */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wfss-blog-footer {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfss-blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wfss-blog-author img {

  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.wfss-author-info {
  display: flex;
  flex-direction: column;
}

.wfss-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0b0b1f;
}

.wfss-post-date {
  font-size: 12px;
  color: #888;
}

/* Responsive Blog */
@media (max-width: 991px) {
  .wfss-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wfss-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Banner */
.wfss-page-banner {
  background:
    linear-gradient(rgba(5, 107, 241, 0.9), rgba(11, 11, 31, 0.9)),
    url("images/about-group.png"); /* Use a relevant image */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}

.wfss-page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.wfss-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 16px;
  font-weight: 500;
  flex-wrap: wrap;
}
.wfss-breadcrumb li {
    white-space: nowrap;
}
.wfss-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.wfss-breadcrumb a:hover {
  opacity: 0.8;
}

.wfss-breadcrumb i {
  font-size: 12px;
  opacity: 0.7;
}

.wfss-breadcrumb span {
  opacity: 0.7;
}

/* Grid System for Blog Page */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

@media (max-width: 991px) {
  .col-8,
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Blog List Style */
.wfss-blog-page-content {
  padding-bottom: 100px;
}

.wfss-blog-card-list {
  background: #fff; /* Removed border per standard blog styling, maybe underline? */
  margin-bottom: 50px;
  /* border-bottom: 1px solid #eee; */
  /* padding-bottom: 40px; */
}

.wfss-blog-card-list .wfss-blog-img-wrapper {
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.wfss-blog-card-list .wfss-blog-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.wfss-blog-card-list:hover .wfss-blog-img-wrapper img {
  transform: scale(1.05);
}

.wfss-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

@media (max-width: 491px) {
  .wfss-blog-meta {
    flex-direction: column;
    /* gap: 10px; */
  }
}
.wfss-blog-meta span {
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
}
span.wfss-blog-category {
  background-color: var(--bg-blue-color);
  padding: 5px 20px;
  color: #000;
  border-radius: 50px;
}
.wfss-blog-meta i {
  color: #056bf1;
  font-size: 20px;
  transform: rotateY(180deg);
}

.wfss-blog-title a {
  font-size: 28px;
  font-weight: 700;
  color: #0b0b1f;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s;
}

.wfss-blog-title a:hover {
  color: #056bf1;
}

.wfss-blog-excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 20px 0 25px;
}

.wfss-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #056bf1;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.wfss-blog-readmore:hover {
  gap: 12px;
}

/* Sidebar Styles */
.widget-area {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .widget-area {
    padding-left: 0;
    margin-top: 60px;
  }
}

.widget {
  margin-bottom: 40px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.widget h2,
.wp-block-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.widget h2::after,
.wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #056bf1;
}

.wfss-recent-posts,
li,
#categories ul,
#categories li {
  margin: 0;
  padding: 0;
}
#categories li {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 10px;
  border-bottom: 1px solid #0033cc3f;
  padding-bottom: 10px;
}
#categories li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

#categories li a {
  text-decoration: none;
  color: #555;
}
.wfss-recent-posts li {
  text-decoration: none;
  display: block;
  margin: 0 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.wfss-recent-posts li .wfss-recent-content {
  display: flex;
  flex-direction: column;
  gap: 5px;

  /* margin-bottom: 1rem; */
}
.wfss-recent-posts li img {
  border-radius: 10px;
}
.wfss-recent-posts li a {
  text-decoration: none;
  color: #555555;
}
.wfss-recent-posts li a h4 {
  /* display: flex; */
  font-size: 16px;
  /* gap: 30px; */
}
/* Pagination */
.wfss-pagination ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.wfss-pagination li {
  list-style: none;
}

.wfss-pagination a,
.wfss-pagination span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
}

.wfss-pagination .current {
  background: #0057ff;
  color: #fff;
}

/* ----------------------------------------- */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 100%;
  padding: 15px 15px 15px 45px; /* Left padding for icon space */
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fff;
  font-size: 15px;
  color: #555;
  outline: none;
  transition: border-color 0.3s;
}

.search-field:focus {
  border-color: #056bf1;
}

.search-submit {
  position: absolute;
  left: 15px; /* Icon on the left */
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #0b0b1f; /* Dark color for icon */
  transition: color 0.3s;
}

.search-submit:hover {
  color: #056bf1;
}

.search-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-wrap svg {
  width: 18px;
  height: 18px;
}

/* Ensure parent list items are relative for absolute positioning of sub-menu */
/* Ensure parent list items are relative for absolute positioning of sub-menu */
#wfss-primary-menu li {
  position: relative;
}

/* Sub-Menu Styling for WordPress Structure */
#wfss-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  border-radius: 0 0 8px 8px; /* Rounded bottom corners */
  border-top: 3px solid #056bf1; /* Primary color accent on top */
}

/* Show Sub-Menu on Hover */
#wfss-primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border-radius: 8px;
}

/* Sub-Menu List Items */
#wfss-primary-menu .sub-menu li {
  position: relative;
  display: block;
  margin: 0;
}

/* Sub-Menu Links and Labels */
#wfss-primary-menu .sub-menu li a,
#wfss-primary-menu .sub-menu li .menu-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  color: #1a1a2e; /* Text color */
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Hover Effects for Sub-Menu Items */
#wfss-primary-menu .sub-menu li a:hover,
#wfss-primary-menu .sub-menu li:hover > a,
#wfss-primary-menu .sub-menu li:hover > .menu-label {
  background-color: #f8f9fa;
  color: #056bf1; /* Primary Blue */
  padding-left: 30px; /* Slide effect */
}

/* Second Level Sub-Menu (Flyout) */
#wfss-primary-menu .sub-menu .sub-menu {
  top: -15px; /* Align with parent item */
  left: 100%; /* Move to right */
  border-radius: 8px; /* Fully rounded */
  margin-left: 10px; /* Small gap */
  border-top: none; /* remove top border for child menus if desired, or keep */
  border-top: 3px solid #056bf1;
}

/* Add Arrows to Parent Items */
/* Top Level Arrow */
#wfss-primary-menu > li.menu-item-has-children > a::after,
#wfss-primary-menu > li.services-parent > a::after {
  content: "\f078"; /* FontAwesome Chevron Down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Top Level Hover Arrow Rotate */
#wfss-primary-menu > li.menu-item-has-children:hover > a::after,
#wfss-primary-menu > li.services-parent:hover > a::after {
  transform: rotate(180deg);
}

/* Sub-Menu Arrow (Right) */
#wfss-primary-menu .sub-menu li.menu-item-has-children > a::after,
#wfss-primary-menu .sub-menu li.menu-item-has-children > .menu-label::after {
  content: "\f054"; /* FontAwesome Chevron Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: auto; /* Push to right */
}

/* ---------------------------------------------------- */
/* Mobile Responsive Styling (Max Width 991px) */
/* ---------------------------------------------------- */
@media (max-width: 991px) {
  /* Reset Sub-Menu Positioning to Static (Stacking) */
  #wfss-primary-menu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0;
    background-color: #f9f9f9; /* Slightly darker bg for nested feel */

    /* Hide by default, show on hover/tap */
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Force display block when parent hovered/active (Tap on mobile usually triggers hover) */
  #wfss-primary-menu li:hover > .sub-menu {
    display: block;
    transform: none;
    animation: fadeIn 0.3s ease;
  }

  /* Reset Nested Sub-Menus (Level 2+) to stack vertically, not fly out */
  #wfss-primary-menu .sub-menu .sub-menu {
    position: static;
    margin-left: 0;
    border-top: none;
    padding-left: 15px; /* Indent nested items */
    background-color: #f0f0f0; /* Even darker for level 3 */
  }

  /* Sub-Menu Links Mobile Styling */
  #wfss-primary-menu .sub-menu li a,
  #wfss-primary-menu .sub-menu li .menu-label {
    padding: 15px 20px;
    padding-left: 40px; /* Indent level 2 items */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Level 3 Indentation */
  #wfss-primary-menu .sub-menu .sub-menu li a {
    padding-left: 60px;
  }

  /* Reset Arrows for Mobile */
  #wfss-primary-menu .sub-menu li.menu-item-has-children > a::after,
  #wfss-primary-menu .sub-menu li.menu-item-has-children > .menu-label::after {
    content: "\f078"; /* Change Right Arrow to Down Arrow on Mobile */
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 03-01-2026 */
.hide-dotes-before {
  display: none;
}

@media only screen and (min-width: 820px) and (max-width: 1180px) {
  .wfss-why-choose-bg-shape {
    width: 35rem;
  }
  .wfss-support-img-sub {
    width: 35%;
    bottom: -30px;
    left: 19%;
  }
  .wfss-support-img-main {
    width: 40%;

    left: 40%;
  }
  .wfss-support-bg-shape,
  .wfss-support-dots {
    display: none;
  }
  .wfss-about-images img {
    width: 60%;
  }
}

.tax-service_category .service-category-content-block.wfss-section-padding.pt-5.pb-5{
     display: none;
}