@charset "UTF-8";
/*!

Theme Name: DM Valid Theme
Author: Alpha Developer
Author URI: 
Description: This is the official website dmValid. 
Version: 1.0

*/
:root {
  /* Color palette */
  --primary-color: #04082f;
  --secondary-color: #c32ef8;
  --secondary-color-light: #f0efff;
  --text-color: #333;
  --white-color-light: #f7f7f7;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #999;
  --gradient-color: linear-gradient(135deg, #c62df7 0%, #574afe 100%);
  --cta-bg: #a8d5e2;
  --cta-bg-hover: #8fc5d4;
  --link-hover: #00d4ff;
  --dropdown-border: #3a3a3a;
  --black-color-shade1: #1a1a1a;
  --black-color-shade2: #252525;
  --shodow: 0 0 10px rgb(0 0 0 / 20%);
  --border-color: #ededed;
  --border-color2: rgb(255 255 255 / 8%);
  /* Font settings */
  --font-family: "Lato", sans-serif;
  --base-font-size: 16px;
  /* Spacing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 32px;
  /* Border radius */
  --border-radius: 5px;
}

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

/* Global styles */
body {
  font-family: var(--font-family);
  font-size: var(--base-font-size);
  color: var(--text-color);
  line-height: 1.5;
  scroll-behavior: smooth;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  color: var(--black-color);
}
h1.dark,
h2.dark,
h3.dark,
h4.dark,
h5.dark,
h6.dark,
strong.dark,
b.dark {
  color: var(--white-color);
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bg-dark {
  background: var(--black-color);
}

.theme-btn {
  background: var(--gradient-color);
  color: var(--white-color);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  width: max-content;
  position: relative;
}
.theme-btn:hover {
  color: var(--white-color);
}
.theme-btn:hover::after {
  transform: rotate(45deg);
}
.theme-btn::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l10-10M7 7h10v10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s;
}
.theme-btn-secondary {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 500;
}
.theme-btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.theme-btn.transparent {
  background: transparent;
}

.section-title .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-color);
  margin-bottom: 20px;
}
.section-title .title.dark {
  color: var(--white-color);
}
.section-title .description {
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 20px;
}
.section-title .description.dark {
  color: var(--white-color);
}

section .header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}
section .header .section-title {
  max-width: 1000px;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
header .navbar {
  background-color: var(--white-color);
  padding: 20px 32px 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .navbar__brand {
  min-width: 200px;
  max-width: 200px;
  z-index: 1002;
}
header .navbar__center {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-top: -10px;
}
header .navbar__menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
header .navbar__menu-item--dropdown {
  position: relative;
}
header .navbar__menu-item--dropdown.active .navbar__link--dropdown::after {
  transform: rotate(180deg);
}
header .navbar__link {
  color: var(--black-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .navbar__link:hover {
  color: var(--secondary-color);
}
header .navbar__link--dropdown::after {
  content: "";
  background-color: var(--black-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
header .navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding-top: 20px;
  z-index: 1000;
}
header .navbar__dropdown-list {
  list-style: none;
  padding: 0;
  border-radius: 8px;
  overflow: visible;
  box-shadow: var(--shodow);
}
header .navbar__dropdown-item {
  border-bottom: 1px solid var(--white-color);
  position: relative;
}
header .navbar__dropdown-item:first-child .navbar__dropdown-link {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
header .navbar__dropdown-item:last-child .navbar__dropdown-link {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
header .navbar__dropdown-item:last-child {
  border-bottom: none;
}
header .navbar__dropdown-item--dropdown {
  position: relative;
  overflow: visible !important;
}
header .navbar__dropdown-item .navbar__dropdown-link {
  position: relative;
  display: block;
  padding: 14px 20px;
  color: var(--white-color);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}
header .navbar__dropdown-item .navbar__dropdown-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--gradient-color);
  transition: all 0.5s ease;
  z-index: -1;
}
header .navbar__dropdown-item .navbar__dropdown-link:hover {
  color: var(--primary-color);
}
header .navbar__dropdown-item .navbar__dropdown-link:hover::after {
  filter: invert(0);
}
header .navbar__dropdown-item .navbar__dropdown-link:hover::before {
  left: -50%;
}
header .navbar__subdropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 2000;
  background: var(--secondary-color);
  border-radius: 8px;
  margin-left: 0;
  pointer-events: none;
}
header .navbar__subdropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
header .navbar__subdropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header .navbar__subdropdown-item:last-child {
  border-bottom: none;
}
header .navbar__subdropdown-item .navbar__subdropdown-link {
  display: block;
  padding: 14px 20px;
  color: var(--white-color);
  text-decoration: none;
  background: var(--gradient-color);
  transition: all 0.3s ease;
}
header .navbar__subdropdown-item .navbar__subdropdown-link:hover {
  color: var(--black-color);
}
header .navbar__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .navbar__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .navbar__contact-label {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 600;
}
header .navbar__contact-number {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 800;
}
header .navbar__contact-number a {
  color: var(--black-color);
}
header .navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}
header .navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}
header .navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
header .navbar__toggle-bar {
  width: 28px;
  height: 3px;
  background-color: var(--black-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .navbar__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .navbar__overlay.active {
  display: block;
  opacity: 1;
}

@media (min-width: 1025px) {
  header .navbar__menu-item--dropdown:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header .navbar__dropdown-item--dropdown:hover .navbar__dropdown-link {
    color: var(--black-color);
  }
  header .navbar__dropdown-item--dropdown:hover .navbar__dropdown-link:after {
    filter: invert(1);
  }
  header .navbar__dropdown-item--dropdown:hover > .navbar__subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
  header .navbar__dropdown-link--dropdown::after {
    content: "";
    background-color: var(--white-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
    filter: none;
    transition: transform 0.3s ease;
  }
  header .navbar__dropdown-item--dropdown .navbar__dropdown-link {
    padding-right: 45px;
  }
}
@media (max-width: 1024px) {
  header .navbar {
    padding: 15px 20px;
  }
  header .navbar__toggle {
    display: flex;
  }
  header .navbar__center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--white-color);
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 80px 0 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  header .navbar__center.active {
    right: 0;
  }
  header .navbar__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  header .navbar__menu-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  header .navbar__menu-item:last-child {
    border-bottom: none;
  }
  header .navbar__menu-item--dropdown.active > .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 2000px;
  }
  header .navbar__menu-item--dropdown.active > .navbar__link--dropdown::after {
    transform: rotate(180deg);
  }
  header .navbar__link {
    padding: 15px 20px;
    width: 100%;
    justify-content: space-between;
  }
  header .navbar__link--dropdown::after {
    margin-left: auto;
  }
  header .navbar__dropdown {
    position: static;
    width: 100%;
    padding: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 1;
    visibility: visible;
  }
  header .navbar__dropdown-list {
    box-shadow: none;
    border-radius: 0;
    background: var(--white-color-light);
  }
  header .navbar__dropdown-item {
    border-bottom: 1px solid var(--border-color);
  }
  header .navbar__dropdown-item .navbar__dropdown-link {
    padding: 12px 20px 12px 40px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 !important;
  }
  header .navbar__dropdown-item--dropdown .navbar__dropdown-link {
    padding-right: 40px;
  }
  header .navbar__dropdown-item--dropdown.active > .navbar__subdropdown {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
  header .navbar__dropdown-item--dropdown.active > .navbar__dropdown-link--dropdown::after {
    transform: translateY(-50%) rotate(180deg);
  }
  header .navbar__dropdown-link--dropdown::after {
    content: "";
    background-color: var(--black-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1);
    transition: transform 0.3s ease;
  }
  header .navbar__subdropdown {
    position: static;
    width: 100%;
    transform: none;
    margin: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .navbar__subdropdown-list {
    box-shadow: none;
    background: #e8e8e8;
    border-radius: 0;
  }
  header .navbar__subdropdown-item .navbar__subdropdown-link {
    padding: 10px 20px 10px 50px;
    font-size: 14px;
    background-size: 200% 200%;
  }
  header .navbar__right {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
  }
  header .navbar__contact {
    align-items: center;
  }
}
@media (max-width: 768px) {
  header .navbar__center {
    width: 280px;
  }
}
.tagline {
  display: inline-block;
  background: #141414;
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 30px;
  color: var(--white-color);
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: max-content;
}
.tagline:before {
  content: "•";
  margin-right: 10px;
  color: var(--secondary-color);
}

.banner-section {
  padding: 50px 20px;
  border-bottom: 0.5px solid var(--white-color-light);
  margin-bottom: 60px;
  background: var(--secondary-color-light);
}
.banner-section .hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.banner-section .cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.banner-section .slider-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.banner-section .splide__slide {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.banner-section .splide__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.stats-container {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto 80px;
}
.stats-container .stat-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  border-right: 1px solid var(--border-color);
}
.stats-container .stat-card:last-child {
  border-right: none;
}
.stats-container .stat-number {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
  color: var(--black-color);
  letter-spacing: -1px;
}
.stats-container .stat-label {
  font-size: var(--base-font-size);
  color: var(--text-color);
  line-height: 1.5;
  font-weight: 400;
}
.stats-container .counter {
  display: inline-block;
}

.info-section {
  width: 100%;
  background: var(--black-color);
}
.info-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 80px;
}
.info-section .sidebar {
  position: sticky;
  top: 120px;
}
.info-section .sidebar .tagline {
  margin-bottom: 0;
}
.info-section .content {
  max-width: 1000px;
}
.info-section .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 120px;
  margin-top: 60px;
  position: relative;
}
.info-section .stats:before {
  content: "";
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 0.1px;
  height: 100%;
  background: var(--white-color-light);
  opacity: 0.09;
}
.info-section .stats:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 140%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  height: 0.1px;
  background: var(--white-color-light);
  opacity: 0.07;
}
.info-section .stat-number {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
  color: var(--white-color);
  letter-spacing: -1px;
}
.info-section .stat-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white-color);
}
.info-section .stat-description {
  font-size: 14px;
  color: var(--white-color);
  line-height: 1.5;
  font-weight: 400;
}
.info-section-about-page {
  background: var(--white-color);
}
.info-section-about-page .stats:before, .info-section-about-page .stats:after {
  background: var(--black-color);
}
.info-section-about-page .stat-number,
.info-section-about-page .stat-title,
.info-section-about-page .stat-description {
  color: var(--text-color);
}

.services-section {
  padding: 80px 20px;
}
.services-section .header {
  margin-bottom: 50px;
}
.services-section .splide {
  padding: 20px 0;
}
.services-section .splide .splide__arrow {
  width: 55px;
  height: 55px;
}
.services-section .service-card {
  background: var(--white-color-light);
  border-radius: 16px;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.services-section .service-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.services-section .service-card:hover .icon-wrapper,
.services-section .service-card:hover .service-title,
.services-section .service-card:hover .service-description {
  filter: invert(1);
}
.services-section .service-card:hover:before {
  height: 100%;
}
.services-section .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
  position: relative;
  transition: 0.3s all;
}
.services-section .service-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black-color);
  position: relative;
  transition: 0.3s all;
}
.services-section .service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 40px;
  flex-grow: 1;
  position: relative;
  transition: 0.3s all;
}
.services-section-about-page .service-card {
  background: var(--black-color-shade1);
}
.services-section-about-page .service-card .service-title,
.services-section-about-page .service-card .service-description,
.services-section-about-page .service-card b,
.services-section-about-page .service-card strong {
  color: var(--white-color);
}
.services-section-about-page .service-card:hover .service-title,
.services-section-about-page .service-card:hover .service-description,
.services-section-about-page .service-card:hover .icon-wrapper {
  filter: invert(0);
}

.single-service-section {
  padding: 80px 0 20px;
  /* Main Content */
}
.single-service-section-inner {
  display: flex;
  gap: 70px;
}
.single-service-section .sidebar {
  width: 400px;
  flex-shrink: 0;
}
.single-service-section .sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-service-section .services-card {
  background: var(--black-color-shade2);
  border-radius: 8px;
  overflow: hidden;
}
.single-service-section .services-card .title {
  background: var(--black-color-shade1);
  padding: 20px 30px;
  font-weight: 500;
}
.single-service-section .service-item {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color2);
  transition: all 0.3s ease;
}
.single-service-section .service-item:hover span {
  color: var(--secondary-color);
}
.single-service-section .service-item:hover::after {
  transform: rotate(45deg);
}
.single-service-section .service-item:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l10-10M7 7h10v10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s;
}
.single-service-section .service-item span {
  color: var(--white-color);
  transition: 0.3s all;
}
.single-service-section .help-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-service-section .help-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 8%, rgba(21, 23, 23, 0.9) 57.53%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.single-service-section .help-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.single-service-section .help-card .section-title {
  padding: 150px 30px 20px;
  position: relative;
  z-index: 9;
  margin-bottom: 0;
}
.single-service-section .help-card .title {
  font-size: 32px;
}
.single-service-section .help-card .description {
  font-size: 16px;
  color: var(--white-color);
}
.single-service-section .main-content {
  flex: 1;
  max-width: 100%;
}
.single-service-section .main-content .featured-image {
  margin-bottom: 40px;
}
.single-service-section .main-content .featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.single-service-section .main-content-item {
  margin-bottom: 50px;
}
.single-service-section .main-content-item:last-child {
  margin-bottom: 0;
}
.single-service-section .main-content .title {
  font-size: 36px;
}
.single-service-section .main-content .card-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
.single-service-section .main-content .card-list .card-item {
  margin: 0;
}
.single-service-section .vision-section {
  padding: 10px 0;
}
.single-service-section .vision-section .vision-content {
  gap: 30px;
}
.single-service-section .vision-section .features {
  border: none;
  margin-top: 0;
  padding: 0;
}
.single-service-section .faq-section {
  padding-top: 10px;
  padding-bottom: 0;
  grid-template-columns: 1fr;
}

.cta-section {
  position: relative;
  min-height: 500px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}
.cta-section .cta-content {
  position: absolute;
  left: 13.021vw;
  bottom: 0;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.0784313725);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.cta-section .cta-content-inner {
  padding: 50px 30px;
  text-align: center;
}
.cta-section .theme-btn {
  margin: 0 auto;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-list .card-item {
  background-color: var(--black-color-shade1);
  border: 1px solid var(--black-color-shade2);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  margin-bottom: 25px;
}
.card-list .card-item:hover {
  transform: translateY(-5px);
}
.card-list .card-item .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 50px;
}
.card-list .card-item .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.card-list .card-item .card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white-color);
}
.card-list .card-item .feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}
.card-list .card-item .feature-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
  color: var(--gray-color);
}
.card-list .card-item .feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.card-list .card-item .card-text {
  color: var(--black-color);
}
.card-list .card-item .card-text.dark {
  color: var(--white-color);
}

.wcu-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.wcu-section .card-list .card-item {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.wcu-section .card-list .card-item .card-title {
  margin-bottom: 0;
}
.wcu-section .why-choose-header {
  padding: 40px 30px 30px;
}
.wcu-section .why-choose-body {
  padding: 40px 30px;
  background: var(--black-color-shade2);
}
.wcu-section .why-choose-btn {
  border-top: 1px solid var(--dropdown-border);
}
.wcu-section .theme-btn {
  padding: 0;
  margin-top: 30px;
}
.wcu-section-about-page .card-item {
  margin: 0;
}
.wcu-section-about-page .card-list {
  grid-template-columns: repeat(3, 1fr);
}

.features-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--black-color);
}
.features-section .header {
  display: inherit;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}
.features-section .header .section-title {
  margin: 20px auto 0;
  max-width: 90%;
}
.features-section .feature-list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--black-color-shade1);
  border-bottom: none;
}
.features-section .feature-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.features-section .feature-item-header {
  padding: 30px 20px;
  border-right: 1px solid var(--black-color-shade1);
}
.features-section .feature-item-footer {
  position: relative;
  overflow: hidden;
}
.features-section .feature-item-footer:hover img {
  transform: scale(1.1);
}
.features-section .feature-item-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.features-section .feature-title {
  color: var(--white-color);
  font-size: 20px;
}
.features-section .feature-description {
  color: var(--gray-color);
  line-height: 1.5;
  margin-top: 10px;
}
.features-section ul {
  list-style: disc;
  margin: 20px 0 0 0;
  padding: 0 0 0 20px;
}
.features-section ul li {
  margin-bottom: 10px;
  color: var(--gray-color);
}
.features-section ul li::marker {
  color: var(--secondary-color);
}
.features-section ul li:last-child {
  margin-bottom: 0;
}

.testimonials-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-image: url("assets/images/testimonials-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.testimonials-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.testimonials-section .testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
.testimonials-section .section-title {
  margin-bottom: 50px;
}
.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  margin: 0 15px;
}
.testimonials-section .quote-icon {
  font-size: 148px;
  color: var(--secondary-color);
  margin: 40px 0 30px;
  line-height: 35px;
}
.testimonials-section .testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--white-color);
  margin-bottom: 50px;
  font-style: italic;
  font-weight: 400;
}
.testimonials-section .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.testimonials-section .author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  display: none;
}
.testimonials-section .author-info h4 {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonials-section .author-info p {
  font-size: 15px;
  color: var(--white-color-light);
  font-weight: 400;
}
.testimonials-section .splide__pagination {
  bottom: -40px;
}
.testimonials-section .splide__pagination__page {
  border-radius: 10px;
  height: 10px;
  margin: 3px 5px;
  width: 30px;
}
.testimonials-section .splide__pagination__page.is-active {
  background: var(--secondary-color);
  transform: scale(1);
  width: 40px;
}

.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-section .left-section {
  padding-right: 40px;
  position: sticky;
  top: 130px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion .accordion-item {
  background-color: var(--white-color-light);
}
.accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}
.accordion .accordion-header:hover {
  background: var(--gradient-color);
}
.accordion .accordion-header:hover .accordion-title,
.accordion .accordion-header:hover .accordion-icon {
  color: var(--white-color);
}
.accordion .accordion-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color-shade2);
  flex: 1;
  padding-right: 20px;
  transition: 0.3s all;
}
.accordion .accordion-icon {
  font-size: 24px;
  color: var(--black-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion .accordion-item.active .accordion-header {
  border-bottom: 1px solid #e1e1e1;
}
.accordion .accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion .accordion-item.active .accordion-content {
  max-height: 500px;
}
.accordion .accordion-text {
  padding: 15px 30px 25px;
  line-height: 1.6;
  color: var(--text-color);
}

.blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--black-color);
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-section .blog-card {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
}
.blog-section .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-section .blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-section .blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 2;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}
.blog-section .blog-content {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-section .blog-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--white-color);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-section .theme-btn {
  padding: 0;
}
.blog-section.blog-page-section {
  background: transparent;
}
.blog-section.blog-page-section .blog-title {
  color: var(--black-color);
}
.blog-section.blog-page-section .theme-btn {
  color: var(--black-color);
}
.blog-section.blog-page-section .theme-btn:after {
  filter: invert(1);
}

.blog-content-section {
  padding: 80px 20px 0;
}
.blog-content-section .featured-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.blog-content-section .featured-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.blog-content-section .featured-image:hover img {
  transform: scale(1.05);
}
.blog-content-section .content {
  margin-top: 50px;
  color: var(--text-color);
}
.blog-content-section .content p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.blog-content-section .content a {
  color: var(--secondary-color);
  font-weight: 600;
}
.blog-content-section .content a strong {
  color: var(--secondary-color);
  font-weight: 600;
}
.blog-content-section .content ol,
.blog-content-section .content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.blog-content-section .content ol li,
.blog-content-section .content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.blog-content-section .post-footer {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-content-section .tags-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-content-section .tags-section .tags-label {
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
}
.blog-content-section .tags-section .tag {
  padding: 8px 20px;
  background-color: var(--secondary-color-light);
  color: var(--black-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-content-section .tags-section .tag:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.blog-content-section .social-share {
  display: flex;
  gap: 12px;
}
.blog-content-section .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color-shade1);
  border-radius: 8px;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-content-section .social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.footer-section {
  padding-top: 50px;
}
.footer-section .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-section .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-section .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-section .brand-description {
  color: var(--text-color);
  line-height: 1.6;
}
.footer-section .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.footer-section .social-links .title {
  margin-bottom: 0;
}
.footer-section .social-icons {
  display: flex;
  gap: 15px;
}
.footer-section .social-icon {
  width: 40px;
  height: 40px;
  background: var(--black-color-shade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section .social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}
.footer-section .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 25px;
}
.footer-section .link-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-section .link-section ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.footer-section .link-section ul li a:hover {
  color: var(--secondary-color);
}
.footer-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-section .contact-icon {
  width: 48px;
  height: 48px;
  background: var(--black-color-shade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white-color);
}
.footer-section .contact-details h4 {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 6px;
}
.footer-section .contact-details p {
  font-weight: 600;
  color: var(--black-color);
}
.footer-section .newsletter-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 15px;
}
.footer-section .newsletter-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-section .newsletter-form, .footer-section .newsletter-form > p {
  display: flex;
  gap: 0;
}
.footer-section .newsletter-form .wpcf7-not-valid-tip {
  position: absolute;
}
.footer-section .newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--black-color-shade2);
  border: 1px solid var(--text-color);
  border-radius: 6px 0 0 6px;
  color: var(--white-color);
  outline: none;
  font-family: var(--font-family);
  max-width: 235px;
}
.footer-section .newsletter-form input::placeholder {
  color: var(--white-color-light);
}
.footer-section .newsletter-form button {
  padding: 14px 30px;
  background: var(--gradient-color);
  border: none;
  border-radius: 0 6px 6px 0;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}
.footer-section .footer-bottom {
  text-align: center;
  padding: 15px 20px;
  border-top: 1px solid var(--white-color-light);
}
.footer-section .footer-nav {
  display: flex;
  gap: 40px;
}
.footer-section .footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section .footer-nav a:hover {
  color: var(--secondary-color);
}
.footer-section .copyright {
  color: var(--text-color);
}

.page-hero {
  background-color: var(--secondary-color-light);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}
.page-hero-title {
  font-size: 68px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 10px;
}
.page-hero-breadcrumb {
  font-size: 18px;
  color: var(--text-color);
}
.page-hero-breadcrumb a {
  color: var(--black-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-right: 2px;
}
.page-hero-breadcrumb a:hover {
  color: var(--secondary-color);
}
.page-hero-breadcrumb span {
  margin: 0 2px;
}
.page-hero .breadcrumb {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.page-hero .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--black-color);
  font-weight: 600;
  font-size: 16px;
}
.page-hero .breadcrumb li img {
  min-width: 22px;
  max-width: 22px;
}

.mission-section {
  padding: 70px 20px;
  background: var(--black-color);
}
.mission-section .hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mission-section .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.mission-section .cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.mission-section .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.mission-section .image-container img {
  display: block;
}

.vision-section {
  padding: 70px 20px;
}
.vision-section .vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.vision-section .image-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.vision-section .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vision-section .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.vision-section .features {
  border: 1px solid var(--border-color);
  margin-top: 40px;
  padding: 30px 30px 35px;
}
.vision-section .features .feature-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
}
.vision-section .features .feature-item:last-child {
  margin-bottom: 0;
}
.vision-section .features .feature-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.team-section {
  padding: 80px 20px;
  background: var(--black-color);
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.team-section .team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.team-section .team-card:hover .team-image {
  transform: scale(1.05);
}
.team-section .team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.team-section .team-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 6px;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  z-index: 1;
}
.team-section .team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white-color);
}
.team-section .team-role {
  font-size: 15px;
  color: var(--white-color-light);
  font-weight: 400;
}
.team-section .cta-info {
  border-top: 1px solid var(--border-color2);
  margin-top: 100px;
  padding-top: 50px;
  text-align: center;
}

.contact-section {
  padding-top: 80px;
  /* Form Section */
  /* Info Section */
  /* Map Section */
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.contact-section .form-section {
  background-color: var(--white-color-light);
  border: 1px solid var(--border-color2);
  padding: 50px;
  border-radius: 16px;
}
.contact-section .form-section .title {
  margin-bottom: 40px;
}
.contact-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-section .form-group {
  margin-bottom: 20px;
}
.contact-section .form-input,
.contact-section .form-textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color2);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 15px;
  font-family: var(--font-family);
  transition: all 0.3s ease;
}
.contact-section .form-input:focus,
.contact-section .form-textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}
.contact-section .form-input::placeholder,
.contact-section .form-textarea::placeholder {
  color: var(--text-color);
  opacity: 0.7;
}
.contact-section .form-textarea {
  resize: vertical;
  height: 140px;
}
.contact-section .theme-btn {
  border: none;
  font-family: var(--font-family);
  cursor: pointer;
}
.contact-section .info-section {
  padding: 20px 0;
  background: transparent;
}
.contact-section .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-section .info-box {
  width: calc(50% - 20px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.contact-section .info-box:last-child {
  width: 100%;
}
.contact-section .info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.contact-section .icon-box {
  display: flex;
}
.contact-section .icon-box img {
  filter: invert(1);
}
.contact-section .info-label {
  color: var(--black-color);
  font-size: 20px;
}
.contact-section .info-content {
  color: var(--text-color);
  line-height: 1.8;
}
.contact-section .info-content a {
  color: var(--black-color);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.contact-section .info-content a:hover {
  color: var(--text-color);
}
.contact-section .map-section {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.contact-section .map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-section.quote-page-section .contact-grid {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
.contact-section.quote-page-section .heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
}
.contact-section.quote-page-section .sub {
  font-size: 20px;
  margin: 10px 0 15px;
}
.contact-section.quote-page-section .form-group p > label {
  font-weight: 700;
}
.contact-section.quote-page-section .wpcf7-checkbox {
  margin-top: 10px;
  margin-left: -15px;
  display: inline-block;
}
.contact-section.quote-page-section .wpcf7-list-item-label {
  margin-left: 5px;
  margin-right: 5px;
}

.pagination-box {
  margin-top: 70px;
}
.pagination-box .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.pagination-box .pagination a, .pagination-box .pagination span {
  align-items: center;
  background: var(--black-color-shade1);
  border-radius: 7px;
  color: var(--white-color);
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  transition: all 0.3s;
  width: 40px;
}
.pagination-box .pagination a.active, .pagination-box .pagination a:hover, .pagination-box .pagination span.active, .pagination-box .pagination span:hover {
  background: var(--secondary-color);
}
.pagination-box .pagination span.next, .pagination-box .pagination span.prev {
  display: none;
}
.pagination-box .pagination .next,
.pagination-box .pagination .prev {
  font-size: 20px;
  font-weight: 500;
}
.pagination-box .pagination .next:before,
.pagination-box .pagination .prev:before {
  content: "";
  background-color: var(--white-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,3 5,7 9,3" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  vertical-align: middle;
  transform: rotate(90deg);
}
.pagination-box .pagination .next:before {
  transform: rotate(270deg);
}

.error-page {
  padding: 100px 20px 30px;
  text-align: center;
}
.error-page .error-page-image {
  margin-bottom: 40px;
}
.error-page .error-page-image img {
  max-width: 50%;
  margin: 0 auto;
}
.error-page .theme-btn {
  margin: 20px auto 0;
}

.author-section-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 30px;
}
.author-section .profile-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	min-height: 250px;
    max-height: 400px;
}
.author-section .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.author-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.author-section .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-section .contact-item .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-section .contact-item .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
  fill: none;
  stroke-width: 2;
}
.author-section .contact-item span {
  color: var(--black-color);
  font-weight: 600;
}

.email-list-banner {
  padding: 80px 20px;
  background: var(--secondary-color-light);
  position: relative;
}
.email-list-banner .main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: center;
}
.email-list-banner .stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 0;
}
.email-list-banner .stat-card {
  background: var(--gradient-color);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s all;
}
.email-list-banner .stat-number {
  color: var(--white-color);
  font-size: 42px;
}
.email-list-banner .stat-label {
  font-size: 14px;
  color: var(--white-color-light);
}
.email-list-banner nav.breadcrumb {
  position: absolute;
  top: 20px;
}
.email-list-banner nav.breadcrumb a {
  font-weight: 700;
  transition: 0.3s all;
}
.email-list-banner nav.breadcrumb a:hover {
  color: var(--secondary-color);
}

.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  max-height: 500px; /* scroll height for ~10 rows */
  overflow-y: auto; /* enable vertical scroll */
}
.table-wrapper .table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.table-wrapper .table tr:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}
.table-wrapper .table th,
.table-wrapper .table td {
  padding: 20px 30px;
  text-align: left;
  font-size: 15px;
  background: var(--white-color-light);
}
.table-wrapper .table th {
  background: var(--primary-color);
  padding: 20px 30px;
  color: var(--white-color);
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 2;
}
.table-wrapper .table th:first-child {
  border-top-left-radius: 8px;
}
.table-wrapper .table th:last-child {
  border-top-right-radius: 8px;
}

.default-page-section .content {
  margin-top: 0;
}

/* Media Queries */
@media only screen and (min-width: 1201px) and (max-width: 1350px) {
  header .navbar__menu {
    gap: 25px;
  }
  header .navbar {
    padding: 20px 20px 10px;
  }
  header .navbar__brand {
    min-width: 150px;
    max-width: 150px;
  }
  header .navbar__center {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  header .navbar__center {
    gap: 60px;
  }
  header .navbar__contact {
    display: none;
  }
}
@media only screen and (max-width: 1119px) {
  header .navbar {
    padding: 15px 20px 10px;
  }
  header .navbar__brand {
    min-width: 130px;
    max-width: 130px;
  }
  header .navbar__center {
    gap: 40px;
  }
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 1099px) {
  .section-title .title {
    font-size: 32px;
  }
  .single-service-section-inner {
    display: flex;
    gap: 30px;
  }
  .single-service-section .sidebar {
    width: 300px;
    flex-shrink: 0;
  }
  .single-service-section .main-content .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-service-section .vision-section .vision-content {
    grid-template-columns: 1fr;
  }
  .single-service-section .help-card .title {
    font-size: 24px;
  }
  .email-list-banner {
    padding-left: 0;
    padding-right: 0;
  }
  .email-list-banner .main-layout {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  header .navbar__contact {
    display: block;
  }
  header .navbar__brand {
    min-width: 170px;
    max-width: 170px;
  }
  .stats-container .stat-card {
    padding: 10px 20px;
    text-align: center;
  }
  .stats-container .stat-number {
    font-size: 3rem;
  }
  .footer-section .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .info-section-about-page .info-section-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-section-about-page .sidebar {
    position: static;
  }
  .mission-section .image-container img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .vision-section .section-title .title {
    font-size: 20px;
  }
  .vision-section .features {
    padding: 20px 10px 25px 20px;
  }
  .team-section .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
  .blog-content-section {
    padding: 60px 0 0;
  }
  .email-list-banner .stat-card {
    padding: 25px 25px !important;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .hero-section {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container .stat-card {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .stats-container .stat-card:last-child, .stats-container .stat-card:nth-last-child(2) {
    border-bottom: none;
  }
  .info-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-section .stats {
    gap: 100px;
    margin-bottom: 40px;
  }
  .info-section .stats:after {
    display: none;
  }
  .info-section .stat-number {
    font-size: 54px;
  }
  .page-hero {
    min-height: 300px;
  }
  .page-hero .page-hero-title {
    font-size: 54px;
  }
  .mission-section {
    padding-left: 0;
    padding-right: 0;
  }
  .mission-section .hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mission-section .section-title .title {
    font-size: 20px;
  }
  .vision-section {
    padding-left: 0;
    padding-right: 0;
  }
  .vision-section .vision-content {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .services-section, .wcu-section-about-page, .team-section {
    padding-left: 0;
    padding-right: 0;
  }
  .services-section .header, .wcu-section-about-page .header, .team-section .header {
    margin-bottom: 50px;
    grid-template-columns: auto;
    gap: 0;
    margin-bottom: 0;
  }
  .wcu-section-about-page .header, .team-section .header {
    margin-bottom: 20px;
  }
  .wcu-section-about-page .card-list, .team-section .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-service-section-inner {
    flex-direction: column-reverse;
  }
  .single-service-section-inner .sidebar {
    width: 100%;
  }
  .author-section-inner {
    grid-template-columns: 1fr 1fr;
  }
  .email-list-banner .main-layout {
    grid-template-columns: 1fr;
    gap: 10px !important;
  }
}
@media (max-width: 768px) {
  .services-section .service-card {
    padding: 40px 30px;
  }
  .services-section .service-title {
    font-size: 24px;
  }
  .card-list {
    grid-template-columns: 1fr 1fr;
  }
  .card-list .card-item {
    margin: 0;
  }
  .blog-section .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .blog-section .blog-image {
    height: 280px;
  }
  .blog-section .blog-title {
    font-size: 22px;
    min-height: auto;
  }
  .blog-section .blog-content {
    padding: 25px 0 20px 0;
  }
  .features-section .feature-item {
    width: 50%;
  }
  .info-section .sidebar {
    position: static;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-section .left-section {
    position: static;
    padding-right: 0;
  }
  .footer-section .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }
  .footer-section .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
  }
  .footer-section .newsletter-form {
    flex-direction: column;
  }
  .footer-section .newsletter-form input{
    width: 100%;
  }
	.footer-section .newsletter-form button{
		width: auto;
	}
  .footer-section .footer-bottom {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .footer-section .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 640px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 40px 30px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 0.95rem;
  }
  .info-section-inner {
    display: block;
  }
  .info-section-inner .content {
    max-width: 100%;
  }
  .info-section-inner .section-title {
    margin-top: 30px;
  }
  .banner-section .hero-section, .info-section .stats, section .header {
    display: block;
  }
  .section-title .title {
    font-size: 24px;
  }
  .tagline {
    font-size: 14px;
  }
  .banner-section {
    padding-left: 0;
    padding-right: 0;
  }
  .banner-section .cta-buttons {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .banner-section .theme-btn {
    padding: 14px 18px;
  }
  .banner-section .splide__slide img {
    height: 300px;
  }
  .stats-container .stat-card {
    border-right: none;
  }
  .stats-container .stat-card:nth-last-child(2) {
    border-bottom: 1px solid var(--border-color);
  }
  .info-section .stats {
    margin-bottom: 40px;
  }
  .info-section .stats:before {
    display: none;
  }
  .info-section .stat-card {
    padding: 0;
  }
  .info-section .stat-card:last-child {
    padding-top: 40px;
  }
  .cta-section .cta-content {
    left: 13px;
  }
  .card-list, .blog-section .blog-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section .testimonial-card {
    padding: 20px;
  }
  .testimonials-section .testimonial-card .testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .info-section-about-page .tagline {
    width: 100%;
  }
  .single-service-section .main-content .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-service-section .main-content .title {
    font-size: 24px;
    line-height: 1.5;
  }
  .page-hero .page-hero-title {
    font-size: 32px;
  }
  .pagination-box {
    margin-top: 40px;
  }
  .blog-section.blog-page-section {
    padding-bottom: 20px;
  }
  .email-list-banner .stats-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .contact-section .form-section {
    padding: 30px;
  }
  .contact-section .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .contact-section .info-box {
    width: 100%;
  }
  .contact-section .map-section {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .blog-section .blog-image {
    height: 240px;
  }
  .blog-section .blog-title {
    font-size: 20px;
  }
  .blog-section .blog-category {
    font-size: 12px;
    padding: 6px 16px;
  }
  .footer-section .logo-container {
    gap: 10px;
  }
  .footer-section .title {
    font-size: 18px;
  }
  .banner-section .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .banner-section .cta-buttons .theme-btn {
    width: 100%;
    justify-content: center;
  }
  .banner-section .splide__slide img {
    height: 240px;
  }
  .features-section .feature-item {
    width: 100%;
  }
  header .navbar__brand:before {
    content: "";
    position: absolute;
    width: 100%;
    background: var(--white-color);
    height: 85px;
    left: 0;
    top: 0;
    z-index: -1;
  }
  header .navbar__center {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  header .navbar__brand {
    max-width: 100px;
  }
}

/*# sourceMappingURL=style.css.map */
