@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");

/* Fonts */
:root {
  --default-font: "Plus Jakarta Sans", 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: "Lato", sans-serif;
  --nav-font: "Plus Jakarta Sans", 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: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #013739;
  --highlight-color: #6ac6ac; /* New highlight color */
  --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: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #8fbc8f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #6ac6ac; /* 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: #f2f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #013739;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  height: auto;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 40px;
}

.header .sitename {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  margin-left: 10px;
  color: var(--heading-color);
  text-transform: none;
}

.header .sitename .upkeep {
  font-weight: 900; /* Extra bold for Upkeep */
}

.header .sitename .care {
  font-weight: 400; /* Regular for Care */
}

.navmenu ul {
  list-style: none;
}

.navmenu ul li {
  padding: 0 10px;
}

.navmenu ul li a {
  font-size: 0.9rem;
  padding: 5px 0;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 24px;
  }

  .header {
    border-radius: 0;
  }
}

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

.header .logo img {
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: none;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.7);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(1, 55, 57, 0.9);
}

/*--------------------------------------------------------------
# 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: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Basic mobile navigation styling */
#toggle-menu {
  display: none; /* Hide the checkbox */
}

/* Better hamburger icon styling */
.mobile-nav-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Improved X animation with equal proportions */
#toggle-menu:checked ~ .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
  background-color: rgba(255, 255, 255, 0.9);
}

#toggle-menu:checked ~ .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

#toggle-menu:checked ~ .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
  background-color: rgba(255, 255, 255, 0.9);
}

/* Updated mobile menu styling for full-width with transparency */
@media (max-width: 1199px) {
  /* Show the hamburger on mobile */
  .mobile-nav-toggle {
    display: flex;
  }

  /* Hide desktop demo button on mobile */
  .desktop-only {
    display: none !important;
  }

  /* Show mobile demo button in navigation */
  .mobile-demo-item {
    display: block !important;
    margin-top: 20px;
  }

  /* Menu container styling */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%; /* Full width */
    height: auto; /* Auto height instead of 100vh */
    max-height: 85vh; /* Cut off at bottom */
    background: rgba(1, 55, 57, 0.95); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 80px 0 40px 0;
    z-index: 1000;
    overflow-y: auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  /* Menu items styling with optimized text size */
  .navmenu ul {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }

  .navmenu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0; /* Add padding between list items */
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 1.125rem !important; /* 3/4 of 1.5rem = 1.125rem */
    font-weight: 500 !important;
    padding: 1.25rem 1.5rem !important; /* Slightly reduced vertical padding */
    color: rgba(255, 255, 255, 0.9) !important;
    display: block !important;
    letter-spacing: 0.5px !important;
  }

  /* Close button (X) styling */
  #toggle-menu:checked ~ .mobile-nav-toggle {
    /* Remove position: fixed and top/right properties */
    /* Keep only the transformation for the X animation */
  }

  /* Slide-in animation with improved timing */
  #toggle-menu:checked ~ .navmenu {
    right: 0;
  }

  /* Add a subtle hover effect */
  .navmenu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Adjust the active indicator with the new padding */
  .navmenu a.active {
    border-left: 4px solid var(--highlight-color);
    padding-left: calc(1.5rem - 4px); /* Adjust for the border */
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  padding: 60px 0 30px 0;
  background-color: var(--background-color);
  position: relative;
}

.footer h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--highlight-color);
  bottom: 0;
  left: 0;
}

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

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

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

.footer .footer-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .footer-links a:hover {
  color: var(--highlight-color);
  padding-left: 5px;
}

.footer .social-links {
  margin-top: 15px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  font-size: 16px;
  color: var(--contrast-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--highlight-color);
  border-color: var(--highlight-color);
  transform: translateY(-3px);
}

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

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.footer .copyright .sitename {
  color: var(--contrast-color);
}

.footer p {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-email {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer .footer-email:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }

  .footer h4 {
    margin-top: 20px;
  }

  .footer .social-links {
    margin-bottom: 20px;
  }
}

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

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 62px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

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

/* Remove the underline effect for section titles */
.section-title h2:after {
  content: none;
}

/* Remove the section title underline effect */
.section-title h2 {
  display: inline-block;
  position: static;
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
}

.hero h3 {
  padding-top: 20px;
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--accent-color);
  letter-spacing: normal;
}

.hero p {
  margin: 20px 0 0 0;
  font-size: 18px;
  color: var(--heading-color);
}

/* Restore original hero button styling */
.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
  min-width: 170px;
  text-align: center;
}

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

.hero .Request-a-Demo {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
  min-width: 160px;
  text-align: center;
  text-decoration: none;
}

.hero .Request-a-Demo:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: var(--accent-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.cards .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

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

.tabs .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.tabs .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.tabs .nav-link p {
  font-size: 15px;
  margin: 0;
}

.tabs .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.tabs .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.tabs .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

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

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

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

/*--------------------------------------------------------------
# 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: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-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 0 10px 0;
  }
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  color: var(--highlight-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: var(--default-color);
  margin-top: 15px;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--highlight-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--highlight-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--highlight-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--highlight-color);
}

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

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

@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: 6px;
  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: 6px;
}

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

/*--------------------------------------------------------------
# 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 .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.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 */
}

/* Header and Navigation Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navmenu li {
  margin-left: 2rem;
}

.navmenu a {
  color: var(--nav-color, #ffffff) !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color, #8fbc8f) !important;
}

/* Pure CSS approach (less reliable) */
#home:target ~ header #toggle-menu,
#product:target ~ header #toggle-menu,
#our-why:target ~ header #toggle-menu,
#team:target ~ header #toggle-menu,
#contact:target ~ header #toggle-menu {
  checked: false;
}

/* Make sure the Cards section maintains its original blueish background */
#cards.cards.light-background {
  background-color: var(
    --light-background-color,
    #f0f4f7
  ); /* Use variable with fallback */
  padding: 60px 0;
  margin-top: 2rem;
  width: 100vw; /* Full viewport width */
  position: relative;
  left: 50%; /* Center it */
  right: 50%;
  margin-left: -50vw; /* Negative margin to extend beyond container */
  margin-right: -50vw;
}

/* Add rounded corners to images */
#our-why img.img-fluid,
.team .member img {
  border-radius: 12px; /* Moderate rounding */
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect for images */
#our-why img.img-fluid:hover,
.team .member img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure team member images maintain their styling */
.team .member img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px; /* Match the border-radius */
}

/* Improve product section layout and alignment */
#product .about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#product .about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#product .about-image-container img {
  max-height: 500px;
  object-fit: contain;
}

/* Style the feature list in product section */
#product ul {
  list-style: none;
  padding: 0;
  margin-top: -5px; /* Negative margin to pull content up */
}

#product ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

#product ul li i {
  font-size: 22px;
  color: white; /* White icons */
  background-color: #004d40; /* Dark green background */
  padding: 10px;
  border-radius: 8px;
  margin-right: 15px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

#product ul li div {
  flex: 1;
}

#product ul li h4 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

#product ul li p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Adjust spacing in the about content */
#product .about-content {
  padding-top: 0; /* Remove top padding to move content up */
}

#product .about-content h3 {
  margin-top: 0; /* Remove top margin to move content up */
  margin-bottom: 5px; /* Reduce space below heading */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #product .about-image-container {
    margin-bottom: 30px;
  }
}

/* Enhance product section styling */
#product .col-lg-6 img.img-fluid {
  max-width: 110%; /* Make image slightly larger */
  margin-left: -5%; /* Offset the increased size */
}

/* Further reduce space above feature list */
#product p.fst-italic {
  margin-bottom: 5px; /* Further reduced from 10px to 5px */
}

/* Improved mobile button text alignment */
@media (max-width: 576px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .hero .btn-get-started,
  .hero .Request-a-Demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70px; /* Fixed height for better alignment */
    padding: 10px;
    line-height: 1.2;
  }

  /* Force line breaks for mobile text */
  .mobile-text br {
    display: block !important;
  }

  /* Adjust the text size slightly */
  .mobile-text {
    font-size: 14px;
    white-space: normal;
    width: 100%;
  }
}

/* Responsive button text */
.desktop-text {
  display: inline;
}

.mobile-text {
  display: none;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  .hero-tagline {
    /* Remove this block */
  }
}

/* Modern Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font, "Poppins", sans-serif);
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Responsive heading sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.125rem;
  }
}

/* Hero tagline styling to match original */
.hero-tagline {
  font-family: "Lato", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 76.8px;
  margin: 0 0 16px 0;
  color: #ffffff;
  text-align: center;
}

.hero-tagline-highlight {
  color: var(--highlight-color);
  font-weight: 900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 32px;
    line-height: 1.2;
  }
}

/* Global Request-a-Demo Button Styling */
.Request-a-Demo {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
  min-width: 160px;
  text-align: center;
  text-decoration: none;
}

.Request-a-Demo:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: var(--accent-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Secondary Button (outline style) */
.secondary-button {
  color: var(--accent-color);
  background: white;
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  min-width: 160px;
  text-align: center;
  text-decoration: none;
}

.secondary-button:hover {
  color: white;
  background: var(--accent-color);
  border-color: var(--accent-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive text for Request-a-Demo buttons */
@media (max-width: 576px) {
  .Request-a-Demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70px;
    padding: 10px;
    line-height: 1.2;
  }

  .Request-a-Demo .mobile-text {
    font-size: 14px;
    white-space: normal;
    width: 100%;
  }

  .Request-a-Demo .mobile-text br {
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Social Proof Section
--------------------------------------------------------------*/
#social-proof {
  padding: 80px 0;
}

@media (max-width: 768px) {
  #social-proof {
    padding: 60px 0;
  }
}

.section-subtitle {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.partner-logo {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.8);
  transition: all 0.3s ease;
}

.logo-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .logos-row {
    gap: 30px;
  }

  .partner-logo {
    max-height: 50px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .logos-row {
    gap: 25px;
    justify-content: space-around;
  }

  .partner-logo {
    max-height: 45px;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .logos-row {
    flex-direction: column;
    gap: 30px;
  }

  .partner-logo {
    max-height: 50px;
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

/* Header Demo Button Styling */
.header-demo-btn {
  color: var(--accent-color) !important;
  background: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(1, 55, 57, 0.15);
}

.header-demo-btn:hover {
  color: var(--highlight-color) !important;
  background: var(--contrast-color);
  border-color: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(106, 198, 172, 0.25);
}

/* Desktop only visibility */
.desktop-only {
  display: inline-block;
}

/* Mobile Demo Button in Navigation */
.mobile-demo-item {
  display: none;
}

.mobile-demo-link {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
  border-radius: 6px !important;
  margin: 15px 1.5rem 5px 1.5rem !important;
  padding: 12px 24px !important;
  text-align: center !important;
  font-weight: 600 !important;
  border: 2px solid var(--accent-color) !important;
  box-shadow: 0 2px 8px rgba(1, 55, 57, 0.2) !important;
}

.mobile-demo-link:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%) !important;
  color: var(--contrast-color) !important;
  border-color: color-mix(in srgb, var(--accent-color), black 15%) !important;
  box-shadow: 0 4px 12px rgba(1, 55, 57, 0.3) !important;
}

/* Header Login Button Styling */
.header-login-btn {
  color: var(--contrast-color) !important;
  background: transparent;
  border: 2px solid var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(1, 55, 57, 0.08);
  margin-left: 8px;
}

.header-login-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color) !important;
  border-color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(1, 55, 57, 0.15);
  transform: translateY(-2px);
}

/* Navigation menu button adjustments */
.navmenu ul li.desktop-only {
  padding: 0;
  margin-left: 12px;
}

.navmenu ul li.desktop-only:last-child {
  margin-right: 0;
}

/* Mobile adjustments */
@media (max-width: 1199px) {
  .navmenu ul li.desktop-only {
    display: none;
  }
}

/* Restore button appearance for nav menu buttons */
.navmenu .header-demo-btn,
.navmenu .header-login-btn {
  background: var(--contrast-color) !important;
  border-radius: 6px !important;
  border-width: 2px !important;
  border-style: solid !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  padding: 10px 24px !important;
  margin-left: 12px !important;
  margin-right: 0 !important;
  box-shadow: 0 2px 8px rgba(1, 55, 57, 0.15) !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  min-width: 120px;
  text-align: center;
  vertical-align: middle;
}

.navmenu .header-demo-btn {
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.navmenu .header-demo-btn:hover {
  color: var(--highlight-color) !important;
  border-color: var(--highlight-color) !important;
  background: var(--contrast-color) !important;
  box-shadow: 0 4px 16px rgba(106, 198, 172, 0.25) !important;
}

.navmenu .header-login-btn {
  color: var(--contrast-color) !important;
  background: transparent !important;
  border-color: var(--contrast-color) !important;
}

.navmenu .header-login-btn:hover {
  background: var(--contrast-color) !important;
  color: var(--accent-color) !important;
  border-color: var(--contrast-color) !important;
  box-shadow: 0 4px 16px rgba(1, 55, 57, 0.15) !important;
}

/* Remove nav link underline and flex for buttons */
.navmenu .header-demo-btn:before,
.navmenu .header-login-btn:before {
  display: none !important;
}

/* Remove extra nav li padding for button lis */
.navmenu ul li.desktop-only {
  padding: 0 !important;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.navmenu ul li.desktop-only:first-of-type {
  margin-left: 32px;
}

.navmenu ul li.desktop-demo-btn-li {
  margin-left: 32px;
}
