service-card-:root {
  --bs-primary: #2780e3;
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #f1f5f9; /* Background color for the entire website, including individual sections */
  --default-color: #475569; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f1f5f9; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0ea5e9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d131f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 34px;
  padding-left: 2px;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 30px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
}

/*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title
  .breadcrumbs
  .breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
  padding: 120px 0 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 94%) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero .hero-content .hero-tag .tag-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero .hero-content .hero-tag .tag-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.hero .hero-content .hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--heading-color);
}

@media (max-width: 1200px) {
  .hero .hero-content .hero-headline {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-headline {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

.hero .hero-content .hero-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-cta {
    gap: 24px;
  }
}

.hero .hero-content .hero-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-cta .cta-button i {
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-cta .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px
    color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .hero-content .hero-cta .cta-button:hover i {
  transform: translateX(4px);
}

.hero .hero-content .hero-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-cta .cta-link i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-cta .cta-link:hover {
  color: var(--accent-color);
}

.hero .hero-content .hero-cta .cta-link:hover i {
  transform: scale(1.1);
}

.hero .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .hero .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hero .stats-grid .stat-card {
  background: var(--surface-color);
  padding: 28px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .stats-grid .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .stats-grid .stat-card.stat-card-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap i {
  color: var(--contrast-color);
}

.hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-value,
.hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-title {
  color: var(--contrast-color);
}

.hero .stats-grid .stat-card.stat-card-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 50%);
}

.hero .stats-grid .stat-card.stat-card-accent {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .stats-grid .stat-card.stat-card-accent:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .stats-grid .stat-card .stat-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .stats-grid .stat-card .stat-icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stats-grid .stat-card .stat-info .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700; 
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero .stats-grid .stat-card .stat-info .stat-title {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 48px;
  }

  .hero .hero-content .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-content .hero-cta {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
.services {
  padding: 100px 0;
  background-color: transparent;
}

@media (max-width: 768px) {
  .services {
    padding: 64px 0;
  }
}

.services .service-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.services .service-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.services .service-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-card:hover .service-link i {
  transform: translateX(4px);
}

.services .service-card.featured {
  background: var(--accent-color);
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .services .service-card.featured {
    transform: scale(1.05);
  }
}

.services .service-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

@media (min-width: 992px) {
  .services .service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

.services .service-card.featured .icon-wrapper {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

.services .service-card.featured .icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-card.featured h3 {
  color: var(--contrast-color);
}

.services .service-card.featured p {
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.services .service-card.featured .service-link {
  color: var(--contrast-color);
}

.services .service-card.featured .service-link:hover {
  color: var(--contrast-color);
}

.services .service-card .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.services .service-card .featured-badge i {
  font-size: 10px;
}

.services .service-card .icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.services .service-card .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.services .service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .service-card .service-link:hover {
  color: color-mix(in srgb, var(--accent-color) 80%, black);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px;
  }

  .services .service-card .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services .service-card .icon-wrapper i {
    font-size: 24px;
  }

  .services .service-card h3 {
    font-size: 18px;
  }
}

.services .stats-row {
  margin-top: 64px;
  padding: 48px 32px;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border-radius: 16px;
}

@media (max-width: 768px) {
  .services .stats-row {
    margin-top: 48px;
    padding: 32px 24px;
  }
}

.services .stats-row .stat-item {
  text-align: center;
}

.services .stats-row .stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .services .stats-row .stat-item .stat-number {
    font-size: 28px;
  }
}

.services .stats-row .stat-item .stat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .services .stats-row .stat-item .stat-label {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
  # Other
  --------------------------------------------------------------*/

.category ul {
  margin: 0px;
  padding: 0px;
}

.category ul li {
  margin: 0px;
  border-bottom: dashed 1px #ccc;
  padding: 1rem 0px;
  list-style: none;
}

.category ul li .title {
  line-height: 2rem;
  height: 2rem;
  overflow: hidden;
  font-size: 1.4rem;
  overflow: hidden;
  border-left: solid 10px #ccc;
  padding-left: 10px;
  margin: 10px auto;
  color: #808080;
}

.category ul li .title a {
  color: #333;
}

.category ul li .desc {
  text-indent: 2em;
  width: 100%;
  line-height: 1.6rem;
  max-height: 4.8rem;
  overflow: hidden;
  font-size: 1rem;
  color: #666;
}

.category ul li .sub {
  font-size: 1rem;
  color: #666;
  margin-top: 0.65rem;
}
.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar li { 
  list-style: none;
  padding: 0.5rem 1rem; 
  text-decoration: none; 
  border-bottom: 1px solid #dee2e6;
  position: relative
}
.sidebar li::before {
    content: " ";
    display: block;
    position: absolute;
    border-radius: 100%;
    width: 5px;
    height: 5px;
    background: #409eff;
    left: 10px;
    top: 50%;
    margin-top: -2.5px;
    overflow: hidden
}
.sidebar li:last-child{
    border-bottom-width: 0;
}
.sidebar li a{
  margin-left: 0.5em;
  height: 1.5em;
  line-height: 1.5em;
  display: block;
  overflow: hidden;
  color: #373a3c;
}
.wave {
  color: white;
  margin-bottom: -1px;
}

.footer {
  border-top: solid 1px #dedede;
  background: #575757;
  color: #bcbcbc;
}
.footer a {
  color: #bcbcbc;
}
.footer .footer-links {
  line-height: 60px;
  text-align: left;
  border-bottom: 1px solid #4a4a4a;
  height: 60px;
  overflow: hidden;
}
.footer .footer-links {
  background: url(../images/footer-logo.gif) no-repeat right 50%;
}
.footer .footer-links a {
  font-size: 16px;
  padding: 0 10px 0 10px;
}
.footer .row {
  border-top: 1px solid #686868;
  color: #8a8a8a;
}
.footer .row ul {
  list-style: none;
  border-right: 1px solid #4a4a4a;
  border-left: 1px solid #686868;
}
.footer .row ul:first-child {
  border-left: 0;
}
.footer .row ul:last-child {
  border-right: 0;
}
.footer .row li {
  padding-left: 1.2rem;
  line-height: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
}
.full-page {
  min-height: calc(100vh - 430px);
}
.w-10 {
  width: 10px;
}
.w-20 {
  width: 20px;
}
.w-30 {
  width: 30px;
}
.w-50 {
  width: 50px;
}
.w-100 {
  width: 100px;
}
.w-150 {
  width: 150px;
}
.w-200 {
  width: 200px;
}
.w-250 {
  width: 350px;
}
.w-300 {
  width: 300px;
}
.w-350 {
  width: 350px;
}
.w-400 {
  width: 400px;
}
.w-450 {
  width: 450px;
}
.w-500 {
  width: 450px;
}
