@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --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: "Poppins", 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ed6e23; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #553a8b; /* 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. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #553a8b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ed6e23; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*******************************************************************************
 * Roboto
 **********************************************************************/
/* roboto-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto/roboto-v51-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto/roboto-v51-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto/roboto-v51-latin_latin-ext-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto/roboto-v51-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*******************************************************************************
 * Poppins
 **********************************************************************/
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v24-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins/poppins-v24-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins/poppins-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/poppins/poppins-v24-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*******************************************************************************
 * Raleway
 **********************************************************************/
/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway/raleway-v37-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/raleway/raleway-v37-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/raleway/raleway-v37-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/raleway/raleway-v37-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/raleway/raleway-v37-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 1px 18px rgba(0, 0, 0, 0.1);
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  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 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 0;
    margin: 0 2px;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 8px 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.25s ease;
    position: relative;
    background: transparent;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 6px;
    transition: transform 0.25s ease;
  }
  .navmenu > ul > li > a {
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
  }
  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > .active,
  .navmenu > ul > li > .active:focus {
    color: var(--nav-hover-color);
    border-bottom-color: var(--accent-color);
  }
  .navmenu > ul > li:hover > a i {
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    overflow: visible;
  }
  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--nav-dropdown-background-color);
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
  }
  .navmenu .dropdown ul li {
    min-width: 100%;
  }
  .navmenu .dropdown ul li:first-child a {
    border-radius: 8px 8px 0 0;
  }
  .navmenu .dropdown ul li:last-child a {
    border-radius: 0 0 8px 8px;
  }
  .navmenu .dropdown ul li:only-child a {
    border-radius: 8px;
  }
  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-dropdown-color);
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .navmenu .dropdown ul a i {
    font-size: 10px;
  }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-left-color: var(--accent-color);
  }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-left-color: var(--accent-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: calc(100% + 8px);
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: -8px;
    left: auto;
    right: calc(100% + 12px);
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown ul::before {
    top: 16px;
    left: auto;
    right: -8px;
    transform: rotate(135deg);
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: -8px;
    right: calc(100% + 4px);
    visibility: visible;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 22px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
  }
  .mobile-nav-toggle:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 12px 12px 12px;
    padding: 16px;
    margin: 0;
    border-radius: 16px;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 16px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.25s ease;
    border-radius: 10px;
    margin-bottom: 4px;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.25s ease;
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
  }
  .navmenu a:hover {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active,
  .navmenu .active:focus {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px;
    margin: 0 0 8px 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }
  .navmenu .dropdown ul a {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
  }
  .navmenu .dropdown ul ul {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    margin-left: 8px;
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 22px;
    top: 12px;
    right: 12px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.15);
  }
  .mobile-nav-active .mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul li {
  display: flex;
  align-items: center;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* Verhindert Scrollen während des Ladens */
html.preloader-active,
html.preloader-active body {
  overflow: hidden;
}

/* Gesamter Ladebildschirm */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #f5f0fa;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

/* Wird beim Ausblenden ergänzt */
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Inhalt */
.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(90%, 400px);
  text-align: center;
}

/* Logo-Bereich */
.preloader__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.preloader__logo {
  display: block;
  width: min(280px, 72vw);
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  animation: shifa-logo-pulse 1.8s ease-in-out infinite;
}

/* Animierter Kreis */
.preloader__spinner {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 50%;
}

/*
 * Der sichtbare Kreis liegt auf ::before.
 * Dadurch wird er weniger durch allgemeine Theme-Regeln beeinflusst.
 */
.preloader__spinner::before {
  position: absolute;
  inset: 0;
  display: block;
  box-sizing: border-box;
  content: "";
  border: 5px solid rgba(92, 61, 145, 0.18);
  border-top-color: #5c3d91;
  border-right-color: #f47a20;
  border-radius: 50%;
  animation: shifa-spinner-rotate 0.8s linear infinite;
  will-change: transform;
}

.preloader__text {
  margin: 20px 0 0;
  color: #5c3d91;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* Spinner-Animation */
@keyframes shifa-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Dezente Logo-Animation */
@keyframes shifa-logo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}
/* Nur für Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Barrierefreiheit: Animationen reduzieren */
@media (prefers-reduced-motion: reduce) {
  .preloader {
    transition-duration: 0.1s;
  }
  .preloader__logo {
    animation: none;
  }
  .preloader__spinner::before {
    animation-duration: 1.5s;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px;
  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: 10px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--surface-color), transparent 0%) 100%);
  overflow: hidden;
  padding: 40px 0;
}
.hero .hero-image {
  position: relative;
}
.hero .hero-image .main-image {
  border-radius: 30px;
  box-shadow: 0 30px 80px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}
.hero .hero-image .main-image:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero .hero-image .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.hero .hero-image .floating-card.emergency-card {
  top: 20px;
  left: -30px;
  z-index: 3;
}
.hero .hero-image .floating-card.emergency-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero .hero-image .floating-card.emergency-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  padding: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
}
.hero .hero-image .floating-card.emergency-card .card-content .text {
  display: flex;
  flex-direction: column;
}
.hero .hero-image .floating-card.emergency-card .card-content .text .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.hero .hero-image .floating-card.emergency-card .card-content .text .number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
}
.hero .hero-image .floating-card.stats-card {
  bottom: 30px;
  right: -40px;
  z-index: 3;
  display: flex;
  gap: 2rem;
}
.hero .hero-image .floating-card.stats-card .stat-item {
  text-align: center;
}
.hero .hero-image .floating-card.stats-card .stat-item .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}
.hero .hero-image .floating-card.stats-card .stat-item .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
@media (max-width: 992px) {
  .hero .hero-image {
    margin-bottom: 3rem;
  }
  .hero .hero-image .floating-card {
    position: static;
    margin: 1rem 0;
    transform: none;
  }
  .hero .hero-image .floating-card.stats-card {
    justify-content: center;
  }
}
.hero .hero-content {
  padding-left: 3rem;
}
@media (max-width: 992px) {
  .hero .hero-content {
    padding-left: 0;
  }
}
.hero .hero-content .badge-container {
  margin-bottom: 1.5rem;
}
.hero .hero-content .badge-container .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 992px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
.hero .hero-content .hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.1rem;
  }
}
.hero .hero-stats {
  margin-bottom: 3rem;
}
.hero .hero-stats .stat-group {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .hero .hero-stats .stat-group {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.hero .hero-stats .stat-group .stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero .hero-stats .stat-group .stat i {
  font-size: 2.5rem;
  color: var(--accent-color);
  padding: 5px 15px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 10px;
}
.hero .hero-stats .stat-group .stat .stat-text {
  display: flex;
  flex-direction: column;
}
.hero .hero-stats .stat-group .stat .stat-text .number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}
.hero .hero-stats .stat-group .stat .stat-text .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.hero .cta-section .cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .hero .cta-section .cta-buttons {
    flex-direction: column;
  }
}
.hero .cta-section .cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero .cta-section .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border: none;
  color: var(--contrast-color);
}
.hero .cta-section .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.hero .cta-section .cta-buttons .btn.btn-secondary {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}
.hero .cta-section .cta-buttons .btn.btn-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.hero .cta-section .quick-actions {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero .cta-section .quick-actions {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero .cta-section .quick-actions .action-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.hero .cta-section .quick-actions .action-link i {
  font-size: 1.25rem;
  color: var(--accent-color);
}
.hero .cta-section .quick-actions .action-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}
.hero .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.hero .background-elements .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}
.hero .background-elements .bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}
.hero .background-elements .bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}
.hero .background-elements .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 75%, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, transparent 50%);
}
@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content {
    text-align: center;
  }
  .hero .hero-stats .stat-group {
    justify-content: center;
  }
  .hero .cta-section .quick-actions {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}
.about .section-heading {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: var(--heading-color);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .about .section-heading {
    font-size: 2.25rem;
  }
}
.about .lead-description {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}
.about .image-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  height: 500px;
}
@media (max-width: 768px) {
  .about .image-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
  }
}
.about .image-grid .primary-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
}
.about .image-grid .primary-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.about .image-grid .primary-image:hover img {
  transform: scale(1.08);
}
.about .image-grid .primary-image .certification-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--surface-color);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.about .image-grid .primary-image .certification-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
.about .image-grid .primary-image .certification-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}
.about .image-grid .secondary-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .about .image-grid .secondary-images {
    flex-direction: row;
    height: 180px;
  }
}
.about .image-grid .secondary-images .small-image {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}
.about .image-grid .secondary-images .small-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.about .image-grid .secondary-images .small-image:hover img {
  transform: scale(1.1);
}
.about .content-wrapper {
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .about .content-wrapper {
    padding-left: 0;
    text-align: center;
  }
}
.about .content-wrapper .highlight-box {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}
@media (max-width: 992px) {
  .about .content-wrapper .highlight-box {
    text-align: left;
  }
}
.about .content-wrapper .highlight-box .highlight-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about .content-wrapper .highlight-box .highlight-icon i {
  color: var(--accent-color);
  font-size: 1.75rem;
}
.about .content-wrapper .highlight-box .highlight-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}
.about .content-wrapper .highlight-box .highlight-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}
.about .content-wrapper .feature-list {
  margin-bottom: 2.5rem;
}
.about .content-wrapper .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .about .content-wrapper .feature-list .feature-item {
    justify-content: center;
  }
}
.about .content-wrapper .feature-list .feature-item .feature-icon i {
  color: var(--accent-color);
  font-size: 1.25rem;
}
.about .content-wrapper .feature-list .feature-item .feature-text {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
}
.about .content-wrapper .metrics-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .about .content-wrapper .metrics-row {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about .content-wrapper .metrics-row {
    gap: 1rem;
  }
}
.about .content-wrapper .metrics-row .metric-box {
  text-align: center;
}
.about .content-wrapper .metrics-row .metric-box .metric-number {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about .content-wrapper .metrics-row .metric-box .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}
.about .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .about .content-wrapper .action-buttons {
    justify-content: center;
  }
}
.about .content-wrapper .action-buttons .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about .content-wrapper .action-buttons .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--contrast-color);
}
.about .content-wrapper .action-buttons .btn-contact {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about .content-wrapper .action-buttons .btn-contact i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
.about .content-wrapper .action-buttons .btn-contact:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .about {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  .about .content-wrapper {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .department-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
}
.departments .department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 75%);
}
.departments .department-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.departments .department-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.departments .department-card:hover .department-image img {
  transform: scale(1.05);
}
.departments .department-content {
  padding: 30px;
  position: relative;
}
.departments .department-icon {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 40%);
}
.departments .department-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}
.departments h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 15px 0;
  color: var(--heading-color);
}
.departments p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.departments .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.departments .btn-learn-more span {
  transition: transform 0.3s ease;
}
.departments .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.departments .btn-learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.departments .btn-learn-more:hover span {
  transform: translateX(3px);
}
.departments .btn-learn-more:hover i {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .departments .department-content {
    padding: 25px 20px;
  }
  .departments .department-icon {
    left: 20px;
    width: 50px;
    height: 50px;
    top: -25px;
  }
  .departments .department-icon i {
    font-size: 20px;
  }
  .departments h3 {
    font-size: 20px;
    margin: 35px 0 15px 0;
  }
  .departments p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}
.call-to-action .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 2rem;
  }
}
.call-to-action .content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.call-to-action .cta-buttons {
  margin-bottom: 3rem;
}
.call-to-action .cta-buttons .btn-primary,
.call-to-action .cta-buttons .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px 10px 0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-secondary {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
}
.call-to-action .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.call-to-action .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.call-to-action .cta-buttons .btn-secondary:hover {
  transform: translateY(-2px);
}
.call-to-action .features-row {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.call-to-action .feature-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.call-to-action .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.call-to-action .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.call-to-action .feature-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}
.call-to-action .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}
.call-to-action .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}
.call-to-action .feature-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.call-to-action .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.call-to-action .feature-card .feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.call-to-action .feature-card .feature-link span {
  margin-right: 8px;
}
.call-to-action .feature-card .feature-link i {
  transition: all 0.3s ease;
}
.call-to-action .feature-card .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
}
.call-to-action .feature-card .feature-link:hover i {
  transform: translateX(5px);
}
.call-to-action .emergency-alert {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  color: var(--contrast-color);
}
.call-to-action .emergency-alert .emergency-content {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-content {
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.call-to-action .emergency-alert .emergency-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.call-to-action .emergency-alert .emergency-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-text {
    text-align: center;
  }
}
.call-to-action .emergency-alert .emergency-text h4 {
  color: var(--contrast-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.call-to-action .emergency-alert .emergency-text p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}
.call-to-action .emergency-alert .emergency-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.call-to-action .emergency-alert .emergency-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}
.call-to-action .emergency-alert .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .call-to-action .emergency-alert {
    text-align: center;
  }
  .call-to-action .emergency-alert .row {
    flex-direction: column;
  }
  .call-to-action .emergency-alert .col-lg-4 {
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-tile {
  text-align: center;
  padding: 36px 24px;
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 16px;
  background: var(--surface-color);
  transition: all 0.3s ease;
  height: 100%;
}
.contact .info-tile:hover {
  border-style: solid;
  border-color: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.contact .info-tile:hover .tile-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-color);
}
.contact .info-tile:hover .tile-icon i {
  color: var(--contrast-color);
}
.contact .info-tile .tile-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.contact .info-tile .tile-icon i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.contact .info-tile h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.contact .info-tile p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--default-color);
}
.contact .info-tile .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-style: italic;
}
.contact .form-panel {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px 0 0 20px;
  padding: 48px 44px;
  height: 100%;
}
.contact .form-panel .panel-heading {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}
.contact .form-panel .panel-heading h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.contact .form-panel .panel-heading p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}
.contact .form-panel .php-email-form .field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}
.contact .form-panel .php-email-form .form-control {
  padding: 14px 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 82%);
  background-color: transparent;
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
}
.contact .form-panel .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 2px 0 0 var(--accent-color);
  outline: none;
}
.contact .form-panel .php-email-form .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.contact .form-panel .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.contact .form-panel .php-email-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.contact .form-panel .php-email-form .btn-dispatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact .form-panel .php-email-form .btn-dispatch i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.contact .form-panel .php-email-form .btn-dispatch:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}
.contact .form-panel .php-email-form .btn-dispatch:hover i {
  transform: translateX(4px);
}
.contact .side-panel {
  background: var(--accent-color);
  border-radius: 0 20px 20px 0;
  padding: 18px 36px;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact .side-panel .side-panel-inner {
  width: 100%;
}
.contact .side-panel .panel-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.contact .side-panel .panel-badge i {
  font-size: 24px;
  color: var(--contrast-color);
}
.contact .side-panel h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 14px;
}
.contact .side-panel > .side-panel-inner > p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 32px;
}
.contact .side-panel .metrics-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  padding: 24px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 14px;
}
.contact .side-panel .metrics-block .metric {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact .side-panel .metrics-block .metric .metric-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  min-width: 70px;
}
.contact .side-panel .metrics-block .metric .metric-desc {
  font-size: 13px;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-weight: 500;
  line-height: 1.3;
}
.contact .side-panel .follow-section h6 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-bottom: 14px;
}
.contact .side-panel .follow-section .follow-links {
  display: flex;
  gap: 10px;
}
.contact .side-panel .follow-section .follow-links a {
  width: 42px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact .side-panel .follow-section .follow-links a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
  transform: scale(1.15);
}
.contact .side-panel .follow-section .follow-links a i {
  font-size: 16px;
}
@media (max-width: 992px) {
  .contact .form-panel {
    border-radius: 20px 20px 0 0;
    padding: 36px 30px;
  }
  .contact .side-panel {
    border-radius: 0 0 20px 20px;
    padding: 36px 30px;
  }
  .contact .side-panel .metrics-block {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }
  .contact .side-panel .metrics-block .metric {
    flex-direction: column;
    gap: 4px;
  }
  .contact .side-panel .metrics-block .metric .metric-value {
    min-width: auto;
  }
  .contact .side-panel .follow-links {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contact .info-tile {
    padding: 28px 20px;
  }
  .contact .form-panel {
    padding: 30px 22px;
  }
  .contact .form-panel .panel-heading h3 {
    font-size: 24px;
  }
  .contact .side-panel {
    padding: 30px 22px;
  }
  .contact .side-panel .metrics-block {
    flex-direction: column;
    gap: 16px;
  }
  .contact .side-panel .metrics-block .metric {
    flex-direction: row;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  position: relative;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color) 7%, transparent), transparent 45%), radial-gradient(circle at 5% 85%, color-mix(in srgb, var(--accent-color) 5%, transparent), transparent 40%), var(--background-color);
}
.about-2 .info-content {
  max-width: 560px;
}
.about-2 .info-content .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.about-2 .info-content .label i {
  font-size: 14px;
}
.about-2 .info-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .about-2 .info-content h2 {
    font-size: 34px;
  }
}
.about-2 .info-content .lead-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 36px;
}
.about-2 .info-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.about-2 .info-content .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}
.about-2 .info-content .check-list li:last-child {
  border-bottom: none;
}
.about-2 .info-content .check-list li .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 15%, transparent), color-mix(in srgb, var(--accent-color) 5%, transparent));
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}
.about-2 .info-content .check-list li h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}
.about-2 .info-content .check-list li span {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}
.about-2 .info-content .check-list li:hover .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.05);
}
.about-2 .info-content .action-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.about-2 .info-content .btn-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #6366f1));
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 32%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-2 .info-content .btn-action i {
  font-size: 16px;
  transition: transform 0.3s ease-out;
}
.about-2 .info-content .btn-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color) 45%, transparent);
  color: var(--contrast-color);
}
.about-2 .info-content .btn-action:hover i {
  transform: translateX(5px);
}
.about-2 .info-content .btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--default-color);
  transition: color 0.3s ease;
}
.about-2 .info-content .btn-secondary-link i {
  font-size: 22px;
  color: var(--accent-color);
}
.about-2 .info-content .btn-secondary-link:hover {
  color: var(--accent-color);
}
.about-2 .visual-block {
  position: relative;
  padding: 20px 20px;
}
@media (max-width: 992px) {
  .about-2 .visual-block {
    padding: 20px 0 60px;
  }
}
.about-2 .visual-block .gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.about-2 .visual-block .gradient-blob.blob-one {
  top: -20px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: color-mix(in srgb, var(--accent-color) 30%, transparent);
}
.about-2 .visual-block .gradient-blob.blob-two {
  bottom: 20px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: color-mix(in srgb, #6366f1 25%, transparent);
}
.about-2 .visual-block .dashboard-frame {
  position: relative;
  z-index: 1;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}
.about-2 .visual-block .dashboard-frame .frame-header {
  padding: 14px 18px;
  background: color-mix(in srgb, var(--default-color) 4%, var(--surface-color));
  display: flex;
  gap: 8px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}
.about-2 .visual-block .dashboard-frame .frame-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.about-2 .visual-block .dashboard-frame .frame-header .dot.dot-red {
  background: #ff5f57;
}
.about-2 .visual-block .dashboard-frame .frame-header .dot.dot-yellow {
  background: #febc2e;
}
.about-2 .visual-block .dashboard-frame .frame-header .dot.dot-green {
  background: #28c840;
}
.about-2 .visual-block .dashboard-frame .main-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-2 .visual-block .floating-card {
  position: absolute;
  z-index: 2;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  animation: floatY 4s ease-in-out infinite;
}
.about-2 .visual-block .floating-card.card-metric {
  top: 20%;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation-delay: 0s;
}
@media (max-width: 576px) {
  .about-2 .visual-block .floating-card.card-metric {
    left: 5px;
    top: 15%;
  }
}
.about-2 .visual-block .floating-card.card-metric .metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #6366f1));
  color: var(--contrast-color);
  font-size: 20px;
}
.about-2 .visual-block .floating-card.card-metric .metric-data {
  display: flex;
  flex-direction: column;
}
.about-2 .visual-block .floating-card.card-metric .metric-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}
.about-2 .visual-block .floating-card.card-metric .metric-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}
.about-2 .visual-block .floating-card.card-users {
  bottom: 8%;
  right: -10px;
  animation-delay: 1.5s;
}
@media (max-width: 576px) {
  .about-2 .visual-block .floating-card.card-users {
    right: 5px;
    bottom: 5%;
  }
}
.about-2 .visual-block .floating-card.card-users .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.about-2 .visual-block .floating-card.card-users .avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}
.about-2 .visual-block .floating-card.card-users .avatar-stack img:first-child {
  margin-left: 0;
}
.about-2 .visual-block .floating-card.card-users .avatar-stack .avatar-count {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
}
.about-2 .visual-block .floating-card.card-users .users-label {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about-2 .stats-strip {
  margin-top: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 8%, var(--surface-color)), color-mix(in srgb, var(--accent-color) 3%, var(--surface-color)));
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 12%, transparent);
}
@media (max-width: 768px) {
  .about-2 .stats-strip {
    margin-top: 60px;
    padding: 30px 15px;
  }
}
.about-2 .stats-strip .stat-block {
  text-align: center;
  padding: 12px 10px;
}
.about-2 .stats-strip .stat-block h3 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 60%, #6366f1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}
@media (max-width: 992px) {
  .about-2 .stats-strip .stat-block h3 {
    font-size: 32px;
  }
}
.about-2 .stats-strip .stat-block p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.services .service-item {
  height: 100%;
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
.services .service-item .img {
  overflow: hidden;
}
.services .service-item .img img {
  transition: 0.6s;
}
.services .service-item .details {
  padding: 25px;
}
.services .service-item .details .icon {
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.services .service-item .details .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .service-item .details h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
  text-align: center;
}
.services .service-item .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
}
.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.15);
}
.services .service-item:hover .img img {
  transform: scale(1.1);
}
.services .service-item:hover .details h3 {
  color: var(--accent-color);
}
.services .service-item:hover .details .icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.service-details .service-image img {
  border-radius: 15px;
}
.service-details .service-image .service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}
.service-details .service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .service-details .service-content h2 {
    font-size: 2rem;
  }
}
.service-details .service-content .service-tagline {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.service-details .service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.service-details .service-content .service-features {
  margin: 2rem 0;
}
.service-details .service-content .service-features h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.service-details .service-content .service-features ul {
  list-style: none;
  padding: 0;
}
.service-details .service-content .service-features ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.service-details .service-content .service-features ul li i {
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-size: 1.1rem;
}
.service-details .service-content .service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .service-details .service-content .service-actions {
    flex-direction: column;
  }
}
.service-details .service-content .service-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-details .service-content .service-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}
.service-details .service-content .service-actions .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  padding: 12px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-details .service-content .service-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.service-details .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.service-details .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-details .service-card .card-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-details .service-card .card-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}
.service-details .service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-details .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}
.service-details .service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-details .service-card .card-link:hover {
  gap: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), black 10%);
}
.service-details .service-card .card-link i {
  transition: transform 0.3s ease;
}
.service-details .service-card .card-link:hover i {
  transform: translateX(3px);
}
.service-details .booking-section {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 2rem;
  border-radius: 15px;
}
.service-details .booking-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.service-details .booking-section p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}
.service-details .booking-section .availability-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-details .booking-section .availability-info .info-item i {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-details .booking-section .availability-info .info-item div {
  display: flex;
  flex-direction: column;
}
.service-details .booking-section .availability-info .info-item div strong {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.service-details .booking-section .availability-info .info-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}
.service-details .appointment-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.service-details .appointment-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-details .appointment-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}
.service-details .appointment-card .btn-appointment {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.service-details .appointment-card .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}
.service-details .appointment-card .contact-alternative {
  text-align: center;
  font-size: 0.9rem;
}
.service-details .appointment-card .contact-alternative span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 0.3rem;
}
.service-details .appointment-card .contact-alternative a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}
.service-details .appointment-card .contact-alternative a:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}
@media (max-width: 992px) {
  .service-details .service-content {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .service-details .booking-section {
    margin-bottom: 2rem;
  }
  .service-details .availability-info .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .service-details .service-card {
    margin-top: 2rem;
  }
}

.about-services .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .about-services .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-services .image-gallery {
  position: relative;
}
.about-services .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .about-services .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.about-services .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
}
.about-services .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.about-services .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.about-services .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}
@media (max-width: 576px) {
  .about-services .image-gallery .main-image {
    height: 280px;
  }
}
.about-services .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 3rem;
}
@media (max-width: 576px) {
  .about-services .image-gallery .side-image {
    height: 220px;
    margin-top: 0;
  }
}
.about-services .image-gallery .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.about-services .image-gallery .experience-badge .badge-inner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .about-services .image-gallery .experience-badge .badge-inner {
    padding: 1rem 1.75rem;
  }
}
.about-services .image-gallery .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 576px) {
  .about-services .image-gallery .experience-badge .number {
    font-size: 2rem;
  }
}
.about-services .image-gallery .experience-badge .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .about-services .info-panel {
    margin-top: 2rem;
  }
}
.about-services .info-panel .panel-header {
  margin-bottom: 1.5rem;
}
.about-services .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.about-services .info-panel .panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-services .info-panel .panel-header h2 {
    font-size: 2rem;
  }
}
.about-services .info-panel .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-services .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .about-services .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}
.about-services .info-panel .highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}
.about-services .info-panel .highlight-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}
.about-services .info-panel .highlight-box .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-services .info-panel .highlight-box .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.about-services .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-services .info-panel .highlight-box .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}
.about-services .info-panel .stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .about-services .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.about-services .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
}
@media (max-width: 576px) {
  .about-services .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
.about-services .info-panel .stats-row .stat-block h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .about-services .info-panel .stats-row .stat-block h3 {
    font-size: 1.75rem;
  }
}
.about-services .info-panel .stats-row .stat-block span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}
.about-services .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.about-services .info-panel .cta-button i {
  transition: transform 0.3s ease;
}
.about-services .info-panel .cta-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.about-services .info-panel .cta-button:hover i {
  transform: translateX(5px);
}/*# sourceMappingURL=main.css.map */