/*--------------------------------------------------------------
# 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0071bc; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #0071bc; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0071bc; /* 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: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e4356;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# 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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #0071bc;
  color: var(--default-color);
  background-color: var(--background-color);
  z-index: 997;
  transition: all 0.4s ease;
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  transition: 0.3s;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.header .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .header-main .logo {
    order: 1;
  }

  .header .header-main .navmenu {
    order: 3;
  }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}

.scrolled .header {
  box-shadow: 0 10px 29px 0 rgba(0, 113, 188, 0.3);
  -webkit-box-shadow: 0 10px 29px 0 rgba(0, 113, 188, 0.3);
  -moz-box-shadow: 0 10px 29px 0 rgba(0, 113, 188, 0.3);
}

.scrolled .header .header-top {
  display: none !important;
}

.scrolled .header .header-main {
  padding: 12px 0;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 4px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    border-radius: 0;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .navmenu>ul>li>a::before,
  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    opacity: 0;
  }

  .navmenu>ul>li>a::before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
  }

  .navmenu>ul>li>a::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
  }

  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu>ul>li>a:hover::before,
  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::before,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::before,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
  }

  .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% + 10px);
    opacity: 0;
    transform: perspective(600px) rotateX(-10deg);
    transform-origin: top center;
    transition: all 0.35s ease;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--accent-color);
    min-width: 230px;
    overflow: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navmenu .dropdown ul a {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .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 95%);
    padding-left: 30px;
  }

  .navmenu .dropdown ul a:hover::before {
    transform: translateX(0);
  }

  .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 95%);
    padding-left: 30px;
  }

  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before {
    transform: translateX(0);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    transform: perspective(600px) rotateX(0deg);
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -3px;
    left: auto;
    right: 100%;
    visibility: hidden;
    transform: perspective(600px) rotateY(-10deg);
    transform-origin: right center;
    border-top: none;
    border-left: none;
    border-right: 3px solid var(--accent-color);
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -3px;
    left: auto;
    right: 100%;
    transform: perspective(600px) rotateY(0deg);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nav-color);
    background: transparent;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 80px 0 0 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: 0.4s ease;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 18px 24px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: all 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
  }

  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 32px;
  }

  .navmenu a:hover::before {
    transform: scaleY(1);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    padding-left: 32px;
  }

  .navmenu .active::before,
  .navmenu .active:focus::before {
    transform: scaleY(1);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 0;
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 30%);
    border-top: none;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 16px 24px 16px 40px;
    font-size: 15px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 94%);
  }

  .navmenu .dropdown ul a::before {
    left: 24px;
    width: 3px;
  }

  .navmenu .dropdown ul a:hover {
    padding-left: 48px;
  }

  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:focus {
    padding-left: 48px;
  }

  .navmenu .dropdown ul ul {
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 50%);
  }

  .navmenu .dropdown ul ul a {
    padding-left: 56px;
  }

  .navmenu .dropdown ul ul a::before {
    left: 40px;
  }

  .navmenu .dropdown ul ul a:hover {
    padding-left: 64px;
  }

  .navmenu .dropdown ul ul .active,
  .navmenu .dropdown ul ul .active:focus {
    padding-left: 64px;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    border-color: #fff;
    position: absolute;
    font-size: 24px;
    top: 16px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    transition: 0.4s ease;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: calc(100vh - 80px);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.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 20%);
  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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# 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:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 60px;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background-color: transparent;
  padding-bottom: 60px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to right, color-mix(in srgb, var(--background-color), transparent 90%), var(--background-color)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: var(--background-color);
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  display: block;
}

.hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: fadeInDown 1s both 0.2s;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--default-color);
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.hero .carousel-indicators {
  bottom: -60px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.3;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  .hero h2 {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.featured-services .service-card {
  padding: 40px 40px 40px 40px;
  margin: 40px 15px 40px 15px;
  /*border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);*/
  box-shadow: rgba(0, 113, 188, 0.3) 0px 10px 29px 0px;
  transition: all 0.3s ease;
}

.featured-services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: 64px;
  height: 64px;
}

.featured-services .service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.featured-services .service-card .service-btn-action {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .service-card .service-btn-action i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.featured-services .service-card .service-btn-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.featured-services .service-card .service-btn-action:hover i {
  transform: translateX(-2px);
}

.featured-services .service-card h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

.featured-services .service-card h2 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.featured-services .service-card h2 a span {
  display: block;
}

.featured-services .service-card h2 a:hover {
  color: var(--accent-color);
}

.featured-services .service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.featured-services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 30;
}

.featured-services .service-card:hover {
  border-color: transparent;
}

.featured-services .service-card:hover h2 a {
  color: var(--accent-color);
}

.featured-services .service-card:hover h2 a:hover {
  color: var(--accent-color);
}

.featured-services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.featured-services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.featured-services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .featured-services .service-card {
    padding: 150px 25px 25px;
  }

  .featured-services .service-card h2 {
    font-size: 24px;
  }

  .featured-services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .featured-services {
    padding: 70px 0 50px;
  }
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-3 .content-wrapper {
  max-width: 600px;
}

@media (max-width: 991px) {
  .about-3 .content-wrapper {
    max-width: 100%;
  }
}

.about-3 .badge-label {
  margin-bottom: 16px;
}

.about-3 .badge-label span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-transform: uppercase;
}

.about-3 h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about-3 h2 {
    font-size: 1.75rem;
  }
}

.about-3 .lead-paragraph {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.about-3 .lead-desde {
  font-size: 1rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.about-3 .features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about-3 .feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.about-3 .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

.about-3 .feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 10px;
}

.about-3 .feature-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.about-3 .feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.about-3 .feature-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.about-3 .action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-3 .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.about-3 .btn-primary-action i {
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.about-3 .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
}

.about-3 .btn-primary-action:hover i {
  transform: translateX(3px);
}

.about-3 .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--heading-color);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.about-3 .btn-secondary-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about-3 .stats-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-3 .image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-3 .image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-3 .image-card .image-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 10px 18px;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-3 .image-card .overlay-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading-color);
}

.about-3 .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-3 .stat-card {
  padding: 24px 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s ease;
}

.about-3 .stat-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-3 .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.about-3 .stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

.about-3 .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about-3 .contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about-3 .contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 10px;
}

.about-3 .contact-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.about-3 .contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-3 .contact-title {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-3 .contact-number {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.2s ease;
}

.about-3 .contact-number:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .about-3 .stats-card-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-3 .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-3 .action-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-3 .btn-primary-action,
  .about-3 .btn-secondary-action {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  margin-top: 80px;
}

.about .content {
  padding-right: 40px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 1.75rem;
  }
}

.about .content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.about .icon-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-2 .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, color-mix(in srgb, var(--accent-color), transparent 25%), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.features-2 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-2 .feature-card:hover::before {
  transform: scaleX(1);
}

.features-2 .feature-card:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.features-2 .feature-card:hover .learn-more {
  color: var(--accent-color);
}

.features-2 .feature-card:hover .learn-more i {
  transform: translateX(5px);
}

.features-2 .icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.features-2 .icon-wrapper i {
  font-size: 1.5rem;
}

.features-2 h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.features-2 .learn-more {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.features-2 .learn-more i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .features-2 .feature-card {
    padding: 1.5rem;
  }

  .features-2 .icon-wrapper {
    width: 3rem;
    height: 3rem;
  }

  .features-2 .icon-wrapper i {
    font-size: 1.25rem;
  }

  .features-2 h3 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 {
  position: relative;
  overflow: hidden;
}

.clients-2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  filter: blur(100px);
  pointer-events: none;
}

.clients-2::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  filter: blur(80px);
  pointer-events: none;
}

.clients-2 .clients-showcase {
  position: relative;
  z-index: 1;
}

.clients-2 .client-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 120px;
  position: relative;
  overflow: hidden;
}

.clients-2 .client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 30%, transparent), transparent 50%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.clients-2 .client-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.clients-2 .client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.clients-2 .client-card:hover::before {
  opacity: 1;
}

.clients-2 .client-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.clients-2 .client-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, black));
  transform: scale(1.05);
  z-index: 2;
}

.clients-2 .client-card.featured::before {
  display: none;
}

.clients-2 .client-card.featured img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.clients-2 .client-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.clients-2 .client-card.featured:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .clients-2 .client-card {
    padding: 24px;
    height: 100px;
  }

  .clients-2 .client-card img {
    max-height: 45px;
  }
}

.clients-2 .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 10%, transparent);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.clients-2 .trust-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-2 .trust-badge .badge-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.clients-2 .trust-badge .badge-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .clients-2 .trust-badge {
    padding: 10px 20px;
    gap: 10px;
    margin-top: 32px;
  }

  .clients-2 .trust-badge .badge-icon {
    width: 36px;
    height: 36px;
  }

  .clients-2 .trust-badge .badge-icon i {
    font-size: 18px;
  }

  .clients-2 .trust-badge .badge-text {
    font-size: 12px;
  }
}

.clients-2 .container {
  text-align: center;
}

@media (max-width: 768px) {
  .clients-2 {
    padding: 64px 0;
  }
}

/*--------------------------------------------------------------
# Testimonials 4 Section
--------------------------------------------------------------*/
.testimonials-4 {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  position: relative;
  overflow: hidden;
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials-4::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  pointer-events: none;
}

.testimonials-4::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.testimonials-4 .testimonials-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.testimonials-4 .testimonials-sidebar .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.testimonials-4 .testimonials-sidebar .avatar-stack .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials-4 .testimonials-sidebar .avatar-stack .avatar:first-child {
  margin-left: 0;
}

.testimonials-4 .testimonials-sidebar .avatar-stack .avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.testimonials-4 .testimonials-sidebar .avatar-stack .avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-4 .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.testimonials-4 .testimonials-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.testimonials-4 .testimonials-sidebar .sidebar-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.testimonials-4 .testimonials-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.testimonials-4 .testimonials-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.testimonials-4 .testimonials-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.testimonials-4 .testimonials-sidebar .sidebar-content .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials-4 .testimonials-sidebar .sidebar-content .btn-view-all:hover i {
  transform: translateX(5px);
}

.testimonials-4 .testimonials-carousel {
  padding-bottom: 60px;
}

.testimonials-4 .testimonials-carousel .swiper-wrapper {
  height: auto !important;
}

.testimonials-4 .testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials-4 .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonials-4 .testimonial-card:hover::before {
  opacity: 1;
}

.testimonials-4 .testimonial-card:hover .quote-mark {
  transform: scale(1.15);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials-4 .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonials-4 .testimonial-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.testimonials-4 .testimonial-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials-4 .testimonial-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.testimonials-4 .testimonial-card .card-top .quote-mark i {
  font-size: 22px;
}

.testimonials-4 .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 28px;
  position: relative;
}

.testimonials-4 .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials-4 .testimonial-card .author-info .author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.testimonials-4 .testimonial-card .author-info .author-details h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.testimonials-4 .testimonial-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials-4 .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .testimonials-4 .testimonials-sidebar {
    padding-right: 24px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .testimonials-4 .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .testimonials-4 .testimonials-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .testimonials-4 .testimonials-sidebar .avatar-stack {
    justify-content: center;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar,
  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .testimonials-4 .testimonial-card {
    padding: 24px;
  }

  .testimonials-4 .testimonial-card .card-top .stars i {
    font-size: 14px;
  }

  .testimonials-4 .testimonial-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .testimonials-4 .testimonial-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .testimonials-4 .testimonial-card .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .testimonials-4 .testimonial-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .testimonials-4 .testimonial-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .testimonials-4 .testimonial-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .testimonials-4 .testimonial-card .author-info .author-details span {
    font-size: 13px;
  }

  .testimonials-4 .testimonials-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {

  .testimonials-4::before,
  .testimonials-4::after {
    display: none;
  }

  .testimonials-4 .testimonials-sidebar {
    padding-bottom: 40px;
  }

  .testimonials-4 .testimonials-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar,
  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar:first-child,
  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .testimonials-4 .testimonials-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .testimonials-4 .testimonials-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .testimonials-4 .testimonial-card {
    padding: 20px;
  }

  .testimonials-4 .testimonial-card .card-top {
    margin-bottom: 20px;
  }

  .testimonials-4 .testimonial-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .testimonials-4 .testimonial-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .testimonials-4 .testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testimonials-4 .testimonial-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .testimonials-4 .testimonial-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .testimonials-4 .testimonial-card .author-info .author-details span {
    font-size: 12px;
  }

  .testimonials-4 .testimonials-carousel {
    padding-bottom: 45px;
  }

  .testimonials-4 .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .testimonials-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
}

.testimonials-4 .rating-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 35px 40px;
  color: var(--contrast-color);
}

.testimonials-4 .rating-banner .banner-score {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.testimonials-4 .rating-banner .banner-stars {
  margin-bottom: 8px;
}

.testimonials-4 .rating-banner .banner-stars i {
  color: #FFD700;
  font-size: 20px;
  margin: 0 2px;
}

.testimonials-4 .rating-banner p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
}

.testimonials-4 .rating-banner .banner-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonials-4 .rating-banner .banner-platforms span {
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials-4 .rating-banner .banner-platforms span i {
  font-size: 16px;
  color: #FFD700;
}

@media (max-width: 768px) {
  .testimonials-4 .rating-banner {
    padding: 30px 25px;
    text-align: center;
  }

  .testimonials-4 .rating-banner .banner-score {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .testimonials-4 .rating-banner .banner-platforms {
    justify-content: center;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Features 4 Section
--------------------------------------------------------------*/
.features-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-4 .features-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-4 .features-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.features-4 .features-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.features-4 .features-image:hover img {
  transform: scale(1.05);
}

.features-4 .features-image .floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.features-4 .features-image .floating-card .card-content {
  display: flex;
  align-items: center;
}

.features-4 .features-image .floating-card .card-content i {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features-4 .features-image .floating-card .card-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.features-4 .features-image .floating-card .card-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 768px) {
  .features-4 .features-image img {
    height: 400px;
  }

  .features-4 .features-image .floating-card {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
}

.features-4 .features-content {
  padding-left: 10px;
}

@media (max-width: 992px) {
  .features-4 .features-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.features-4 .features-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.features-4 .features-content .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-4 .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.features-4 .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.features-4 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.features-4 .feature-item:hover .feature-icon {
  background: var(--accent-color);
}

.features-4 .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

.features-4 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.features-4 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-4 .feature-item .feature-content {
  flex: 1;
}

.features-4 .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.features-4 .feature-item .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-4 .feature-item .feature-content p span {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .features-4 .features-content h3 {
    font-size: 28px;
  }

  .features-4 .features-content .lead {
    font-size: 16px;
  }

  .features-4 .feature-item {
    padding: 20px;
  }

  .features-4 .feature-item .feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .features-4 .feature-item .feature-icon i {
    font-size: 20px;
  }
}

.features-4 .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) {
  .features-4 .stats-row {
    margin-top: 48px;
    padding: 32px 24px;
  }
}

.features-4 .stats-row .stat-item {
  text-align: center;
}

.features-4 .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) {
  .features-4 .stats-row .stat-item .stat-number {
    font-size: 28px;
  }
}

.features-4 .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) {
  .features-4 .stats-row .stat-item .stat-label {
    font-size: 12px;
  }
}

.features-4 .stats-band {
  margin-top: 64px;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border-radius: 1rem;
  overflow: hidden;
}

.features-4 .stats-band .stat-cell {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: background 0.3s ease;
}

.features-4 .stats-band .stat-cell .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.features-4 .stats-band .stat-cell h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
}

.features-4 .stats-band .stat-cell p {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .features-4 .stats-band .stat-cell {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .features-4 .stats-band .stat-cell::after {
    display: none;
  }

  .features-4 .stats-band .stat-cell {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .venue-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.venue .venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.venue .venue-card .venue-image {
  position: relative;
  overflow: hidden;
}

.venue .venue-card .venue-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue .venue-card .venue-image .venue-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue .venue-card .venue-image .venue-badge i {
  font-size: 16px;
}

.venue .venue-card .venue-content {
  padding: 30px;
}

.venue .venue-card .venue-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.venue .venue-card .venue-content .venue-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue .venue-card .venue-content .venue-address i {
  color: var(--accent-color);
  font-size: 18px;
}

.venue .venue-card .venue-content .venue-description {
  margin-bottom: 25px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.venue .venue-card .venue-content .venue-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.venue .venue-card .venue-content .venue-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.venue .venue-card .venue-content .venue-features .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
}

@media (max-width: 576px) {
  .venue .venue-card .venue-content .venue-features {
    grid-template-columns: 1fr;
  }
}

.venue .faq-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.venue .faq-item:last-child {
  margin-bottom: 0;
}

.venue .faq-item:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.venue .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.venue .faq-item .faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.venue .faq-item .faq-header .faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.venue .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.venue .faq-item .faq-content p {
  padding: 0 25px 20px;
  margin: 0;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
}

.venue .faq-item.faq-active .faq-header h3 {
  color: var(--accent-color);
}

.venue .faq-item.faq-active .faq-header .faq-toggle {
  transform: rotate(180deg);
}

.venue .faq-item.faq-active .faq-content {
  max-height: 300px;
  overflow: auto;
}

@media (max-width: 992px) {
  .venue .directions-section {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .venue .venue-card .venue-content {
    padding: 25px 20px;
  }

  .venue .accommodation-section {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications .trust-strip {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 20px 0;
  margin-bottom: 48px;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
}

.certifications .trust-strip .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.certifications .trust-strip .trust-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.certifications .trust-strip .trust-item div {
  display: flex;
  flex-direction: column;
}

.certifications .trust-strip .trust-item div strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.certifications .trust-strip .trust-item div span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.certifications .trust-strip .col-lg-3:last-child .trust-item {
  border-right: none;
}

@media (max-width: 992px) {
  .certifications .trust-strip .trust-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .certifications .trust-strip .col-sm-6:nth-child(3) .trust-item,
  .certifications .trust-strip .col-sm-6:nth-child(4) .trust-item {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .certifications .trust-strip .trust-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .certifications .trust-strip .col-sm-6:nth-child(3) .trust-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .certifications .trust-strip .col-sm-6:last-child .trust-item {
    border-bottom: none;
  }
}

.certifications .intro-content {
  max-width: 700px;
  margin: 0 auto 40px;
}

.certifications .intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.certifications .intro-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.certifications .credential-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
}

.certifications .credential-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.certifications .credential-card .card-badge.sale {
  background: #ef4444;
}

.certifications .credential-card .card-badge.new {
  background: #22c55e;
}

.certifications .credential-card .card-emblem {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-height: 300px;
}

.certifications .credential-card .card-emblem img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.certifications .credential-card .card-body-content {
  padding: 20px 20px 16px;
  flex: 1;
}

.certifications .credential-card .card-body-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.certifications .credential-card .card-body-content .card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 12px;
}

.certifications .credential-card .card-body-content .card-tag i {
  font-size: 13px;
}

.certifications .credential-card .card-body-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
}

.certifications .credential-card .card-footer-content {
  padding: 14px 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.certifications .credential-card .card-footer-content .verified {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.certifications .credential-card .card-footer-content .verified i {
  font-size: 14px;
}

.certifications .credential-card .card-footer-content .year {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

.certifications .credential-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.certifications .credential-card:hover .card-emblem img {
  transform: scale(1.08);
}

.certifications .featured-banner {
  margin-top: 48px;
  background: var(--accent-color);
  border-radius: 8px;
  padding: 32px 40px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.certifications .featured-banner .banner-emblem {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.certifications .featured-banner .banner-emblem img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .certifications .featured-banner .banner-emblem {
    margin: 0 auto 20px;
  }
}

.certifications .featured-banner .banner-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 6px;
}

.certifications .featured-banner .banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.certifications .featured-banner .banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.certifications .featured-banner .banner-cta i {
  transition: transform 0.3s ease;
}

.certifications .featured-banner .banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--accent-color);
}

.certifications .featured-banner .banner-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .certifications .featured-banner {
    padding: 28px 24px;
    text-align: center;
  }

  .certifications .featured-banner .banner-text {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 60px 0;
  }

  .certifications .intro-content h2 {
    font-size: 28px;
  }

  .certifications .trust-strip {
    margin-bottom: 32px;
  }
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-3 .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-3 .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-3 .info-tile:hover .tile-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-color);
}

.contact-3 .info-tile:hover .tile-icon i {
  color: var(--contrast-color);
}

.contact-3 .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-3 .info-tile .tile-icon i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-3 .info-tile h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact-3 .info-tile p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--default-color);
}

.contact-3 .info-tile .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-style: italic;
}

.contact-3 .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-3 .form-panel .panel-heading {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact-3 .form-panel .panel-heading h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-3 .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-3 .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-3 .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-3 .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-3 .form-panel .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact-3 .form-panel .php-email-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-3 .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-3 .form-panel .php-email-form .btn-dispatch i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact-3 .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-3 .form-panel .php-email-form .btn-dispatch:hover i {
  transform: translateX(4px);
}

.contact-3 .side-panel {
  background: var(--accent-color);
  border-radius: 0 20px 20px 0;
  padding: 48px 36px;
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-3 .side-panel .side-panel-inner {
  width: 100%;
}

.contact-3 .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-3 .side-panel .panel-badge i {
  font-size: 24px;
  color: var(--contrast-color);
}

.contact-3 .side-panel h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 14px;
}

.contact-3 .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-3 .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-3 .side-panel .metrics-block .metric {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-3 .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-3 .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-3 .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-3 .side-panel .follow-section .follow-links {
  display: flex;
  gap: 10px;
}

.contact-3 .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-3 .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-3 .side-panel .follow-section .follow-links a i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact-3 .form-panel {
    border-radius: 20px 20px 0 0;
    padding: 36px 30px;
  }

  .contact-3 .side-panel {
    border-radius: 0 0 20px 20px;
    padding: 36px 30px;
  }

  .contact-3 .side-panel .metrics-block {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }

  .contact-3 .side-panel .metrics-block .metric {
    flex-direction: column;
    gap: 4px;
  }

  .contact-3 .side-panel .metrics-block .metric .metric-value {
    min-width: auto;
  }

  .contact-3 .side-panel .follow-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-3 .info-tile {
    padding: 28px 20px;
  }

  .contact-3 .form-panel {
    padding: 30px 22px;
  }

  .contact-3 .form-panel .panel-heading h3 {
    font-size: 24px;
  }

  .contact-3 .side-panel {
    padding: 30px 22px;
  }

  .contact-3 .side-panel .metrics-block {
    flex-direction: column;
    gap: 16px;
  }

  .contact-3 .side-panel .metrics-block .metric {
    flex-direction: row;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-2 .content ul {
  list-style: none;
  padding: 0;
}

.about-2 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-2 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-2 .content p:last-child {
  margin-bottom: 0;
}

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Featured Services 2 Section
--------------------------------------------------------------*/
.featured-services-2 {
  --cyan-color: #0dcaf0;
  --orange-color: #fd7e14;
  --teal-color: #20c997;
  --red-color: #df1529;
}

.featured-services-2 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.featured-services-2 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.featured-services-2 .service-item .icon i {
  font-size: 28px;
  transition: 0.5s;
  position: relative;
}

.featured-services-2 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.featured-services-2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services-2 .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.featured-services-2 .service-item.item-cyan .icon {
  background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
}

.featured-services-2 .service-item.item-cyan .icon i {
  color: var(--cyan-color);
}

.featured-services-2 .service-item.item-cyan:hover {
  border-color: var(--cyan-color);
}

.featured-services-2 .service-item.item-cyan:hover .icon {
  background-color: var(--cyan-color);
}

.featured-services-2 .service-item.item-cyan:hover .icon i {
  color: var(--contrast-color);
}

.featured-services-2 .service-item.item-orange .icon {
  background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
}

.featured-services-2 .service-item.item-orange .icon i {
  color: var(--orange-color);
}

.featured-services-2 .service-item.item-orange:hover {
  border-color: var(--orange-color);
}

.featured-services-2 .service-item.item-orange:hover .icon {
  background-color: var(--orange-color);
}

.featured-services-2 .service-item.item-orange:hover .icon i {
  color: var(--contrast-color);
}

.featured-services-2 .service-item.item-teal .icon {
  background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
}

.featured-services-2 .service-item.item-teal .icon i {
  color: var(--teal-color);
}

.featured-services-2 .service-item.item-teal:hover {
  border-color: var(--teal-color);
}

.featured-services-2 .service-item.item-teal:hover .icon {
  background-color: var(--teal-color);
}

.featured-services-2 .service-item.item-teal:hover .icon i {
  color: var(--contrast-color);
}

.featured-services-2 .service-item.item-red .icon {
  background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
}

.featured-services-2 .service-item.item-red .icon i {
  color: var(--red-color);
}

.featured-services-2 .service-item.item-red:hover {
  border-color: var(--red-color);
}

.featured-services-2 .service-item.item-red:hover .icon {
  background-color: var(--red-color);
}

.featured-services-2 .service-item.item-red:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px 30px 0 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

/*--------------------------------------------------------------
# Author Profile Widget Widget
--------------------------------------------------------------*/
.author-profile-widget img {
  max-width: 160px;
}

.author-profile-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.author-profile-widget .social-links {
  margin: 5px 0;
}

.author-profile-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.author-profile-widget .social-links a:hover {
  color: var(--accent-color);
}

.author-profile-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

/*--------------------------------------------------------------
# Search Widget Widget
--------------------------------------------------------------*/
.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Categories Widget Widget
--------------------------------------------------------------*/
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Tags Widget Widget
--------------------------------------------------------------*/
.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}