: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; */
  --heading-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --nav-font: "Poppins",  sans-serif;

  /* Smooth scroll */
  scroll-behavior: smooth;  

  /* Colors */
  --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: #462918; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fd680e; /* 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 */
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #fd680e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a0a0a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #3b3b3b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fd680e; /* 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: #f8f4f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.90);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  height: 100px;
  margin: 20px;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

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

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

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

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

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

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

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}

#primary-navigation .active,
#primary-navigation.scrolled .active {
  text-shadow: 
    0 0 0.25em rgba(0, 0, 0, 0.45),   /* very soft blackish inner glow */
    0 0 0.5em rgba(0, 0, 0, 0.35),   /* medium layer for depth */
    0 0 1em rgba(0, 0, 0, 0.25);   /* outer faint halo */
  transition: text-shadow 0.4s ease;  /* Smooth fade-in when active changes */
}


/* --------------------------------------------------------------
# Page Leader
-------------------------------------------------------------- */
#page-leader {
    position: relative;          /* Important for the pseudo-element */
    overflow: hidden;            /* Hides the overhanging part of the slant */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 30px));
}

body.area-page #page-leader,
body.medicine-page #page-leader,
body.pharma-page #page-leader,
body.research-page #page-leader {
  height: 410px;
}

body.area-page #page-leader .page-title .container.position-relative,
body.medicine-page #page-leader .page-title .container.position-relative,
body.pharma-page #page-leader .page-title .container.position-relative,
body.research-page #page-leader .page-title .container.position-relative {
  padding: 0;
}


/* --------------------------------------------------------------*/

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

.footer h3 {
  font-size: 36px;
  font-weight: 300;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 300px 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 0 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

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

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

.section-title p {
  margin-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 .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
}

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

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

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

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

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

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

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.why-us .card .img {
  position: relative;
  padding: 0;
}

.why-us .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), white 92%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.why-us .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.why-us .card h2 a {
  color: var(--heading-color);
}

.why-us .card h2 a:hover {
  color: var(--accent-color);
}

.why-us .card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

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

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

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

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

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 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: color-mix(in srgb, var(--background-color), transparent 50%);
  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%);
}

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

a[target="_blank"]::after {
  content: "\f35d"; /* FA external-link-square icon */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.65em;
  margin-left: 0.3em;
  vertical-align: 0.05em;
  opacity: 0;
}

a[target="_blank"]:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Section Color Presets
--------------------------------------------------------------*/

:root {
  --bruker-blue: rgba(0, 105, 180, 1);
  --theme-main: rgba(0, 105, 180, 1);
  --theme-secondary: rgba(108, 117, 125, 1);
  --subtheme-medical:  rgba(122, 185, 41, 1);
  --subtheme-pharmaceutical: rgba(241, 135, 0, 1);
  --subtheme-industry: rgba(0, 160, 159, 1);
}

.subtheme-medical .card-footer,
.subtheme-medical .card-icon,
.subtheme-medical .card-icon i,
.subtheme-medical .card-body {
  background-color: var(--subtheme-medical);
}
  
.subtheme-pharmaceutical .card-footer,
.subtheme-pharmaceutical .card-icon,
.subtheme-pharmaceutical .card-icon i,
.subtheme-pharmaceutical .card-body {
  background-color: var(--subtheme-pharmaceutical);
}

.subtheme-industry .card-footer,
.subtheme-industry .card-icon,
.subtheme-industry .card-icon i,
.subtheme-industry .card-body {
  background-color: var(--subtheme-industry);
}

/*--------------------------------------------------------------
# Primary Navigation Section
--------------------------------------------------------------*/
#primary-navigation {
  background-color: transparent;
  z-index: 1000;
}

#primary-navigation a.logo img {
  height: 60px;
}

/* Base navbar styles – transparent at top */
#primary-navigation {
  background-color: transparent !important;   /* force transparent initially */
  transition: background-color 0.4s ease, box-shadow 0.4s ease; /* smooth fade */
  -webkit-transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state: white bg + subtle shadow */
#primary-navigation.scrolled {
  background-color: rgba(255,255,255,0.90) !important;       /* translucent white */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* soft drop shadow – adjust as needed */
}

/* Make text/links darker when solid (better contrast) */
#primary-navigation.scrolled .nav-link,
#primary-navigation.scrolled .navbar-brand {
  color: #000 !important;                     /* or your brand color */
}

/* Fade color transitions for links and brand */
#primary-navigation .nav-link,
#primary-navigation .navbar-brand {
  transition: color 0.4s ease;
}

/* Prevent nav items from wrapping text */
#primary-navigation li.nav-item {
  white-space: nowrap;
}

/* White background for collapsed menu – try to kill flicker */
@media (max-width: 1199.98px) {  /* < 1200px, matching your xl request */
  #primary-navigation .navbar-collapse {
    background-color: #ffffff !important;
  }

  #primary-navigation .navbar-collapse.collapsing,
  #primary-navigation .navbar-collapse.show {
    background-color: #ffffff !important;
  }

  /* Optional polish */
  #primary-navigation .navbar-collapse.show,
  #primary-navigation .navbar-collapse.collapsing {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 1rem 0;
    border-radius: 0 0 8px 8px;
  }
}


/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
.page-title.dark-background {
  position: relative;
  overflow: hidden;
  min-height: 500px;               /* Adjust as needed – or use height: 60vh / 80vh / 100vh */
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;               /* Fills completely, crops to fit, preserves aspect ratio */
  z-index: 1;
}

.page-title .container.position-relative {
  position: relative;
  z-index: 2;                      /* Content stays above the video */
  color: white;                    /* Keep text readable – adjust if needed */
  padding: 80px 0;                 /* Breathing room top/bottom */
  text-align: center;              /* Optional – remove if you prefer left-aligned */
}

.page-title h1,
.page-title p,
.page-title .breadcrumbs {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .page-title.dark-background {
    min-height: 400px;
  }
  
  .page-title .container.position-relative {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

#footer {
  background: linear-gradient(-45deg, #054169, #0071bc);
  color: white;
  font-size: 0.8em;
  padding: 60px 24px 24px; /* extra top padding to compensate for cut */
  clip-path: polygon(
    0          4vh,      /* ← this controls the slant height */
    100%         0,
    100%      100%,
    0         100%
  );
}

#footer a {
  color: white;
}

#footer img.logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 130px;
}

/*--------------------------------------------------------------
#  Sectors & Events section
--------------------------------------------------------------*/

#sectors.section .card,
#events.section .card {
  border-radius: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: none;
  --bs-card-border-color: transparent;
}

#events.section .card {
  max-height: 400px;
}

#sectors.section .card:hover,
#sectors.section .card:focus,
#sectors.section .card:active,
#events.section .card:hover,
#events.section .card:focus,
#events.section .card:active {
  box-shadow: 0 0.3em 0.3em rgba(0,0,0,0.25);
}

#sectors.section .card-footer,
#sectors.section .card-footer a,
#events.section .card-footer,
#events.section .card-footer a,
#events.section .card-body {
  color: white;
}

#reviews.section .card-body {
  background-color: white;
}

#sectors.section .card-footer h3,
#events.section .card-footer h3 {
  line-height: 0.3;
}

#sectors.section .card-footer p,
#events.section .card-footer p {
  margin-bottom: 1em;
}

#sectors.section .card-icon,
#events.section .card-icon {
  font-size: 30px;
  color: white;
}

#sectors.section .card-icon i,
#events.section .card-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 0.3em solid white;
  border-radius: 50%;
  font-size: 2.5rem;
  color: white;
  margin-top: -50%;
}


#events.section img.card-img-top {
  height: 165px;
}
/*--------------------------------------------------------------
# Slash List Section
--------------------------------------------------------------*/
.slash-list li {
  list-style-type: none;
  display: inline;
  white-space: nowrap;
 }

.slash-list li:not(:last-child)::after {
  content: " //";
  color: var(--bruker-blue);
  margin: 0 0.4em 0 0.35em;   /* left/right spacing feels more balanced */
}

.slash-list abbr[title] {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/

#reviews.section {
  background-color: rgba(226, 242, 245, 1);
}

#reviews.section h2 {
  color: rgba(0, 176, 205, 1);
  text-transform: none;
}

#reviews.section .card {
  border-radius: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: none;
  --bs-card-border-color: transparent;
}

#reviews.section .card:hover,
#reviews.section .card:focus,
#reviews.section .card:active {
  box-shadow: 0 0.3em 0.3em rgba(0,0,0,0.25);
}

#reviews.section .card-header,
#reviews.section .card-footer {
  border: none;
  background-color: white;
}

#reviews.section .card-icon {
  font-size: 30px;
  color: white;
}

#reviews.section .card-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 0.3em solid white;
  border-radius: 50%;
  font-size: 1em;
  color: white;
}

#reviews.section .star-rating {
  color: rgb(var(--bs-warning-rgb));
  white-space: nowrap;
}

#reviews.section cite {
  white-space: nowrap;
}
/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/

.index-page h2 {
  text-transform: uppercase;
}

section.starter-section p {
  padding-top: 1em;
  padding-bottom: 1em;
}

.aside-button {all:unset;font-family:Helvetica,Arial,sans-serif;display:inline-block;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;background-color:#0071BC;color:#fff;font-size:20px;border-radius:25px;padding:0 33px;font-weight:bold;height:50px;cursor:pointer;line-height:50px;text-align:center;margin:0;text-decoration:none;}
.aside-button:hover,
.aside-button:focus,
.aside-button:active {
  color: #fff !important;
}
#sidebar div button,
.aside-button {
  width: 75% !important;
  font-size: 1em !important;
}

.btn {
  border-width: 2px;
  padding: 0.5em 2em;
  border-radius: 1.2em;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}

.btn-light {
  background: rgba(248, 249, 250, 0.68);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #0092BC;
}

.btn-light:hover,
.btn-light:focus {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.16);
  background: rgba(248, 249, 250, 0.58);
  border-color: rgba(255, 255, 255, 0.80);
}

.btn-light:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
  background: rgba(248, 249, 250, 0.68);
  color: #0092BC;
  border-color: rgba(255, 255, 255, 1);
}

.toggle-btn .show-less {
    display: none;
}

.toggle-btn[aria-expanded="true"] .show-more {
    display: none;
}

.toggle-btn[aria-expanded="true"] .show-less {
    display: inline;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~ AREAS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

body.areas-page  {
  
}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */