@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --heading-font: "Poppins", Verdana, serif;
  --heading-font-weight: 700;
  --heading-line-height: 1.2;
  --swiper-theme-color: var(--bs-primary);
  --custom-easing: cubic-bezier(.17, .67, .83, .67);

  /* theme colors */
  --bs-body-font-family: "Poppins", Verdana, sans-serif;
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-primary: #FF534A;
  --bs-primary-dark: #d33a32;
  --bs-secondary: #FDEEE9;
  --bs-gutter-x: 2.5rem;

  /* Remove dark theme colors from :root - they belong in [data-theme="dark"] */
  /* Default to light theme colors for better visibility */
  --theme-bg: #ffffff;
  --theme-surface: #f8f9fa;
  --theme-text: #212529;
  --theme-text-secondary: #495057;
  --theme-text-muted: #6c757d;
  --theme-border: #dee2e6;
  --theme-accent: #36C3B6;
  --theme-overlay: rgba(255, 255, 255, 0.1);
  --theme-card-bg: rgba(255, 255, 255, 0.6);
  --theme-shadow: rgba(0, 0, 0, 0.1);
}

/* Light theme */
[data-theme="light"] {
  --theme-bg: #ffffff;
  --theme-surface: #f8f9fa;
  --theme-text: #212529;
  --theme-text-secondary: #495057;
  --theme-text-muted: #6c757d;
  --theme-border: #dee2e6;
  --theme-accent: #36C3B6;
  --theme-overlay: rgba(255, 255, 255, 0.1);
  --theme-card-bg: rgba(255, 255, 255, 0.6);
  --theme-shadow: rgba(0, 0, 0, 0.1);
}

/* Dark theme (default) - ensure these are properly set */
[data-theme="dark"] {
  --theme-bg: #0a0a0a;
  --theme-surface: #1a1a1a;
  --theme-text: #ffffff;
  --theme-accent: #36C3B6;
  --theme-border: #333333;
  --theme-card-bg: #2a2a2a;
  --theme-shadow: rgba(0, 0, 0, 0.5);
}

/* Dark theme */
[data-theme="dark"] {
  --theme-bg: #111111;
  --theme-surface: #1a1a1a;
  --theme-text: #ffffff;
  --theme-text-secondary: #cccccc;
  --theme-text-muted: #999999;
  --theme-border: #333333;
  --theme-accent: #36C3B6;
  --theme-overlay: rgba(0, 0, 0, 0.65);
  --theme-card-bg: rgba(0, 0, 0, 0.7);
  --theme-shadow: rgba(0, 0, 0, 0.18);
}


/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}


.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--theme-text);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--theme-accent);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--theme-accent);
  --bs-accordion-active-bg: transparent;

  --bs-accordion-color: var(--theme-text);
  --bs-accordion-bg: transparent;
}

.accordion-button {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--bs-border-color);
}

[data-bs-theme=dark] .accordion-button::after {
  filter: invert(0) sepia(1) saturate(0) hue-rotate(0deg);
}

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-heading-color: #fff;
  --bs-link-color: #CCCCCC;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: 131, 169, 172;
  --bs-body-color: var(--bs-light);
  --bs-body-color-rgb: 241, 241, 240;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;

  color: var(--bs-gray);
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

/* ++++++++++++++++++++ */

:root {
  --primary-color: #36C3B6;
  --primary-dark: #2ba89c;
  --primary-darker: #36C3B6;
  --text-color: #ffffff;
  --text-muted: #aaaaaa;
  --text-light: #cccccc;
  --text-lighter: #999999;
  --bg-dark: #111111;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--theme-text);
  background-color: var(--theme-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ensure main content spans full width */
.main-content-wrapper {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Ensure proper spacing between sections */
#youtube-video {
  margin-bottom: 2rem;
}

.row:first-of-type {
  margin-top: 1rem;
}

/* Theme toggle button styles */
.theme-toggle-btn {
  background: transparent;
  border: 2px solid var(--theme-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--theme-text);
}

.theme-toggle-btn:hover {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  transform: scale(1.1);
}

.theme-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.theme-toggle-btn:hover .theme-icon {
  transform: rotate(180deg);
}

/* Dark overlay theme support */
#dark-overlay {
  background: var(--theme-overlay);
  transition: background 0.3s ease;
}

/* Overlay styles */
#dark-overlay, #light-overlay {
  transition: opacity 0.3s ease-in-out;
}

/* Theme transitions for all elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Ensure smooth theme switching */
body[data-theme="light"] {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

body[data-theme="dark"] {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Force light theme as default */
body:not([data-theme]) {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Force Header Tagline Theme Colors */
.sticky-header .logo .tagline,
.logo .tagline {
  color: #000000 !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
}

/* Add letter spacing to main logo text */
.sticky-header .logo .name,
.logo .name {
  letter-spacing: 1px !important;
}

.logo {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--theme-text);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.logo .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo .tagline {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--theme-text-secondary) !important;
  margin-top: -2px;
  text-transform: uppercase;
}

.name {
  font-family: 'Six Caps', sans-serif;
  font-weight: 400;
  font-size: 176px;
  font-size: 206px;
  line-height: 0.9;
  color: var(--theme-text);
}

.introduction {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--theme-text);
}

.description {
  font-weight: 400;
  font-size: 21px;
  line-height: 1.8;
  color: var(--theme-text-secondary);
  max-width: 490px;
}

.cta-link {
  font-weight: 700;
  font-size: 24px;
  text-decoration: underline;
  color: var(--text-color);
}

.cta-button-elegant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid var(--theme-text);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: var(--theme-text);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  min-width: fit-content;
}

.cta-button-elegant:hover {
  background-color: var(--theme-text);
  color: var(--theme-bg);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--theme-shadow);
}

.cta-button-elegant:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.section-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.section-nav li {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.section-nav span {
  display: block;
  font-weight: 900;
  margin-bottom: 5px;
}

.section-nav .swiper-slide-thumb-active {
  color: var(--theme-accent);
}

.section-nav .active span {
  color: var(--theme-accent);
}

.bio {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1.5;
  color: var(--text-lighter);
  margin-top: 40px;
}

.skill {
  margin-bottom: 40px;
}

.skill-number {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-color);
}

.skill h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 10px 0;
  color: var(--text-color);
}

.skill p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-lighter);
}

.social-icon {
  color: var(--text-color);
  font-size: 19px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

.sidebar-divider {
  width: 1px;
  height: 100px;
  background-color: var(--text-color);
  margin: 20px 0;
}

.job-title {
  font-weight: 900;
  font-style: italic;
  font-size: 17px;
  color: var(--text-color);
}

.location {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 1.7px;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  padding: 60px 40px;
  background-color: var(--primary-darker);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #b82525;
  color: var(--text-color);
}

.hero-image {
  width: 100%;
  max-width: 766px;
  height: auto;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .name {
    font-size: 48px;
  }

  .description {
    font-size: 18px;
  }

  .section-nav ul {
    gap: 30px;
  }
}

@media (max-width: 991.98px) {
  .name {
    font-size: 90px;
  }

  .sidebar-divider {
    width: 100px;
    height: 1px;
    margin: 20px auto;
  }

  .job-title,
  .location {
    text-align: center;
  }

  .cta-button {
    padding: 40px 30px;
  }

  .banner-slider .name {
    font-size: 56px !important;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
  }
}

@media (max-width: 767.98px) {
  .name {
    font-size: 48px;
  }

  .description {
    font-size: 16px;
  }

  .section-nav ul {
    gap: 20px;
  }

  .cta-link {
    font-size: 20px;
  }
  
  .cta-button-elegant {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    margin: 0 auto;
  }

  .cta-button {
    width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 575.98px) {
  .name {
    font-size: 48px;
  }
  
  .cta-button-elegant {
    padding: 8px 16px;
    font-size: 12px;
    display: block;
    margin: 0 auto;
  }

  .section-nav ul {
    gap: 15px;
  }

  .section-nav li {
    font-size: 12px;
  }

  .section-nav span {
    font-size: 14px;
  }
}


/*----- 6.1 Preloader
--------------------------------------------------------------*/
*#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

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

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}


/*----- Header Menu
--------------------------------------------------------------*/
#menu-toggle {
  opacity: 0;
}

#menu-toggle:checked~.menu-btn>span {
  transform: rotate(45deg);
}

#menu-toggle:checked~.menu-btn>span::before {
  top: 0;
  transform: rotate(0);
  background: #fff;
}

#menu-toggle:checked~.menu-btn>span::after {
  top: 0;
  transform: rotate(90deg);
  background: #fff;
}

#menu-toggle:checked~.navmenu {
  visibility: visible;
  right: 0;
}

.menu-btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 11;
  margin: 40px;
}

.menu-btn>span,
.menu-btn>span::before,
.menu-btn>span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bs-light);
  transition-duration: .25s;
}

.menu-btn>span::before {
  content: '';
  top: -8px;
}

.menu-btn>span::after {
  content: '';
  top: 8px;
}


/*----- Nav Sidebar
--------------------------------------------------------------*/
.nav-overlay {
  position: fixed;
  z-index: 999;
  /* Theme-aware background */
  background: var(--theme-bg);
}

.nav-overlay:before,
.nav-overlay:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.8);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
}

.nav-overlay:after {
  background: rgba(10, 10, 10, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-overlay:before {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.nav__content {
  position: fixed;
  visibility: hidden;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
}

.nav__list {
  position: relative;
  padding: 2vh 0;
  margin: 0;
  z-index: 2;
}

/* Ensure navigation list is always visible when sidebar is active */
body.nav-active .nav__list {
  visibility: visible !important;
  opacity: 1 !important;
}

.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2vh;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 3px;
  -webkit-transform: translate(100px, 0%);
  transform: translate(100px, 0%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-top: 0;
  margin-bottom: 1.5vh;
}

.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: var(--theme-text);
  overflow: hidden;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 900;
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.nav__list-item a:after {
  position: absolute;
  content: '';
  top: 50%;
  margin-top: -2px;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: var(--accent-color);
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.nav__list-item a:hover:after {
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}

.nav__list-item a:hover {
  color: var(--theme-accent);
}

.nav__list-item.active-nav a {
  color: var(--theme-accent);
}

.nav__list-item.active-nav a:after {
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}

body.nav-active .nav__content {
  visibility: visible !important;
  opacity: 1 !important;
}

/* body.nav-active .menu-icon__line {
  background-color: var(--light-background-color);
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
} */
body.nav-active .nav-overlay {
  visibility: visible;
}

body.nav-active .nav-overlay:before,
body.nav-active .nav-overlay:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0;
}

body.nav-active .nav-overlay:after {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

body.nav-active .nav-overlay:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

body.nav-active .nav__list-item {
  opacity: 1 !important;
  -webkit-transform: translateX(0%) !important;
  transform: translateX(0%) !important;
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  visibility: visible !important;
  display: block !important;
}

body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

/* Ensure all navigation items are visible when sidebar is active */
body.nav-active .nav__list-item {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  -webkit-transform: translateX(0%) !important;
  transform: translateX(0%) !important;
}

/* Theme-aware pseudo-elements in navbar */
.nav__list-item a::before,
.nav__list-item a::after {
  background: var(--theme-surface);
}

.nav__list-item a:hover::before,
.nav__list-item a:hover::after {
  background: var(--theme-card-bg);
}

/* Override existing nav-overlay pseudo-elements with theme colors */
.nav-overlay:before,
.nav-overlay:after {
  background: var(--theme-bg) !important;
  opacity: 0.8;
}


/*----- Skills
--------------------------------------------------------------*/
.skill-chart li {
  width: 100%;
  margin-bottom: 40px;
  font-weight: 500;
}

.skill-chart li .chart-border {
  border: 4px solid var(--bs-gray-200);
  border-radius: 15px;
  position: relative;
}

.skill-chart li .chart-percentage {
  content: "";
  border-bottom: 8px solid var(--bs-primary);
  border-radius: 15px;
  position: absolute;
  bottom: -4px;
  left: -5px;
}

.skill-chart li .chart-percentage.seventy-percent {
  width: 70%;
}

.skill-chart li .chart-percentage.seventy-five-percent {
  width: 75%;
}

.skill-chart li .chart-percentage.eighty-percent {
  width: 80%;
}

.skill-chart li .chart-percentage.ninety-percent {
  width: 90%;
}

.skill-chart li .chart-percentage.ninety-five-percent {
  width: 95%;
}


/* slide in */
.slide-in .swiper-slide span,
.slide-in .swiper-slide h2,
.slide-in .swiper-slide p,
.slide-in .swiper-slide .cta-link {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in .swiper-slide span {
  transition-delay: 500ms;
}

.slide-in .swiper-slide h2 {
  transition-delay: 600ms;
}

.slide-in .swiper-slide p {
  transition-delay: 700ms;
}

.slide-in .swiper-slide .cta-link {
  transition-delay: 800ms;
}

.slide-in .swiper-slide.swiper-slide-active span,
.slide-in .swiper-slide.swiper-slide-active h2,
.slide-in .swiper-slide.swiper-slide-active p,
.slide-in .swiper-slide.swiper-slide-active .cta-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* swiper slide-clip */
.slide-clip .swiper-slide .image-holder img {
  transform: scale(1.2);
  transition: transform 1s ease-in-out;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder img {
  transform: scale(1);
}

.slide-clip .swiper-slide .image-holder {
  clip-path: inset(100% 0 0 0);
  display: block;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder {
  animation: 1s slide-clip forwards;
}

.slide-clip .swiper-slide.swiper-slide-prev .image-holder,
.slide-clip .swiper-slide.swiper-slide-next .image-holder {
  animation: 1s slide-down;
}

@keyframes slide-clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slide-down {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}


/* swipe animation */
.swipe-up {
  clip-path: inset(0 0 100% 0);
  display: block;
}

.aos-animate .swipe-up {
  animation: 1s swipe-up forwards;
}

/*.down-leave-active { animation: 1s down-leave; }*/
@keyframes swipe-up {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0);
  }
}

/* polygon */
.polygon {
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
}

.aos-animate .polygon {
  animation: 1s polygon forwards;
}

@keyframes polygon {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
  }

  100% {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  }
}

/* open-up */
.open-up {
  clip-path: inset(48% 34% 36% 35%);
}

.aos-animate.open-up {
  animation: 1s open-up forwards;
}

@keyframes open-up {
  0% {
    clip-path: inset(48% 34% 36% 35%);
  }

  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}

/*@keyframes down-leave {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(100% 0 0 0); }
}*/
.swipe-up {
  --delay: 0.05s;
}

.swipe-up {
  animation-delay: 1s;
  /* animation-delay: data(swipe-delay); */
}

/* Text Effects */
.txt-fx {
  overflow: hidden;
  /* line-height: var(--heading-line-height); */
}

.txt-fx.zoom {
  overflow: visible;
}

.txt-fx .word {
  overflow: hidden;
  transform-origin: 0 100%;
  display: inline-block;
  /* line-height: 1em; */
}

.txt-fx .letter {
  transform-origin: 0 100%;
  display: inline-block;
  /* line-height: 1em; */
}

.txt-fx {
  --delay: 50ms;
  --easing: cubic-bezier(.5, 0, .53, 1);
}

/* fade right */
.txt-fx.fade-right .letter {
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
  transition: transform 0.6s var(--easing), opacity 0.6s var(--easing);
}

.aos-animate .txt-fx.fade-right .letter {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* slide up */
.txt-fx.slide-up .letter {
  transform: translate3d(0, 1.2em, 0);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.slide-up .letter,
.aos-animate .txt-fx.slide-up .letter {
  transform: translate3d(0, 0, 0);
}

/* domino */
.txt-fx.domino .letter {
  transform-origin: 50% 0;
  transform: rotateY(90deg);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.domino .letter,
.aos-animate .txt-fx.domino .letter {
  transform: rotateY(0);
}

/* zoom */
.txt-fx.zoom .letter {
  transform-origin: 50% 0;
  transform: scale(3);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.zoom .letter,
.aos-animate .txt-fx.zoom .letter {
  transform: scale(1);
}


/* banner slider */
.banner-nav-slider .swiper-slide {
  width: auto;
}

/* btn-special */
.btn-special {
  position: relative;
  padding: 32px 60px;
  background: #ff0000;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

/* Text container with overflow hidden */
.btn-special .text-container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Original text */
.btn-special .original-text {
  position: relative;
  display: block;
  color: white;
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
}

.btn-special:hover .original-text {
  transform: translateX(100%);
}

/* New text */
.btn-special .hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
}

.btn-special:hover .hover-text {
  transform: translateX(0);
}

/* Black slide-in background */
.btn-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn-special:hover::before {
  transform: translateX(0);
}

.personal-info {
  position: absolute;
  transform: rotate(-90deg);
  width: 600px;
  bottom: 50px;
  right: -570px;
  gap: 30px;
  transform-origin: left;
}

/* bg image slider */
.image-slider {
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 760px;
  z-index: 0;
}

/* Sticky Header Styles */
.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: var(--theme-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--theme-border);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Ensure sticky works on mobile */
  will-change: transform;
}

/* Fix for safe area on iOS Safari - only targets the area above the header */
@media (max-width: 767.98px) {
  .sticky-header::before {
    content: '';
    position: absolute;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background-color: var(--theme-surface);
    z-index: -1;
  }
}

.sticky-header .logo {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--theme-text);
  transition: color 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.sticky-header .logo .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sticky-header .logo .tagline {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--theme-text-secondary) !important;
  margin-top: -1px;
  text-transform: uppercase;
}

.sticky-header .logo:hover {
  color: var(--theme-accent);
}



/* Sticky Header Hamburger Menu */
.sticky-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.sticky-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--theme-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.sticky-menu-toggle:hover span {
  background-color: var(--theme-accent);
}

/* Hamburger animation when menu is active */
body.nav-active .sticky-menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

body.nav-active .sticky-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-active .sticky-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Adjust main content for full width on desktop */
@media (min-width: 992px) {
  /* Full screen carousel content */
  #intro {
    min-height: calc(100vh - 80px); /* Subtract sticky header height */
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
  }
  
  .carousel-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  
  .banner-slider {
    width: 100%;
    max-width: none;
  }
  
  .banner-content {
    text-align: left;
    align-items: flex-start !important;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .banner-content .name {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
  
  /* Ensure hero image takes full width */
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  /* Navigation tabs at bottom */
  .section-nav {
    margin-top: auto;
    width: 100%;
  }
}

/* Mobile layout adjustments */
@media (max-width: 991.98px) {
  /* Full screen carousel on mobile */
  #intro {
    min-height: calc(100vh - 80px); /* Subtract sticky header height */
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
  }
  
  .carousel-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .banner-slider {
    width: 100%;
    max-width: none;
  }
  
  /* Ensure hero image takes full width */
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  /* Navigation tabs at bottom */
  .section-nav {
    margin-top: auto;
    width: 100%;
  }
  
  /* Mobile header adjustments */
  .sticky-header {
    padding: 12px 16px;
    /* Ensure sticky behavior on mobile */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
  }
  
  .sticky-header .logo span {
    font-size: 20px;
  }
  
  .sticky-menu-toggle {
    width: 28px;
    height: 22px;
  }
  
  .sticky-menu-toggle span {
    height: 2.5px;
  }
}

/* Responsive adjustments for sticky header */
@media (max-width: 1199.98px) {
  .sticky-header .logo span {
    font-size: 20px;
  }
  
  .sticky-menu-toggle {
    width: 28px;
    height: 22px;
  }
  
  .sticky-menu-toggle span {
    height: 2.5px;
  }
}

/* Remove fixed positioning from nav tabs and pause button */
.section-nav.banner-nav-slider {
  position: static;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: unset;
  box-shadow: none;
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  margin: 0;
  width: 100%;
}

.carousel-bottom-controls {
  z-index: 100;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-toggle-btn {
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .section-nav.banner-nav-slider {
    padding-bottom: 1.2rem;
    padding-top: 0.7rem;
  }
  .carousel-bottom-controls {
    bottom: 1rem !important;
  }
}

@media (min-width: 992px) {
  /* Suite name font size on desktop */
  .banner-slider .name {
    font-size: 40px !important;
    line-height: 1.1;
  }
}

@media (max-width: 991.98px) {
  /* Suite name font size on mobile */
  .banner-slider .name {
    font-size: 24px !important;
    line-height: 1.1;
  }
}

/* Prevent carousel content from being hidden behind nav tabs */
.carousel-container {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Ensure all banner content takes full width */
.banner-content {
  text-align: left;
  align-items: flex-start !important;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.banner-content .name {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  justify-content: flex-start;
}

/* Center alignment for suite slides (slides 2-5) */
.banner-content:not(.welcome-rotator) {
  text-align: center;
  align-items: center !important;
  justify-content: center;
}

.banner-content:not(.welcome-rotator) .name {
  text-align: center;
  justify-content: center;
}

.banner-content:not(.welcome-rotator) .carousel-feature-list {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  width: auto;
}

.banner-content:not(.welcome-rotator) .carousel-feature-list li {
  text-align: left;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 600px;
}

.banner-content:not(.welcome-rotator) .cta-button-elegant {
  margin: 0 auto;
  display: block;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  min-width: 140px;
  max-width: 180px;
}

.banner-content:not(.welcome-rotator) .name {
  text-align: center;
  justify-content: center;
  font-family: 'Poppins', Arial, sans-serif !important;
  font-weight: 600;
}

.carousel-main-content-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
.carousel-main-content-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.carousel-control-wrapper {
  position: static;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: unset;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carousel-toggle-btn {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: auto;
  height: auto;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  padding: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-toggle-btn:hover {
  color: var(--primary-color);
  background: none;
  border: none;
}

@media (max-width: 991.98px) {
  .carousel-control-wrapper {
    bottom: unset;
  }
  .carousel-toggle-btn {
    font-size: 1.2rem;
  }
}

.carousel-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}
.carousel-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  font-size: 1.08rem;
  margin-bottom: 0.5em;
  color: var(--theme-text);
  text-align: left;
  justify-content: flex-start;
}
.carousel-feature-list .icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

/* Fix nav tabs for mobile: horizontally scrollable/swipable */
.section-nav.banner-nav-slider {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(0,0,0,0.1);
  padding: 1.5rem 0;
}
.section-nav.banner-nav-slider ul.swiper-wrapper {
  flex-wrap: nowrap !important;
  display: flex;
  gap: 20px;
  min-width: 400px;
}
.section-nav.banner-nav-slider li.swiper-slide {
  min-width: 160px;
  max-width: 180px;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  padding: 0.5rem 0.75rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .section-nav.banner-nav-slider {
    padding: 1.2rem 0;
  }
  .section-nav.banner-nav-slider ul.swiper-wrapper {
    gap: 15px;
    min-width: 300px;
  }
  .section-nav.banner-nav-slider li.swiper-slide {
    min-width: 120px;
    max-width: 140px;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}

.slide-up,
.slide-up-title {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(30px);
}

.slide-up.animated,
.slide-up-title.animated,
.welcome-rotator .welcome-message.active .slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* JavaScript will handle all animations */

@keyframes slideUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .carousel-feature-list {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: block;
  }
  .cta-button-elegant {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    width: auto;
    min-width: 180px;
    max-width: 260px;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
    text-align: left;
  }
}

.carousel-bottom-controls .carousel-arrow-btn {
  background: none;
  border: none;
  color: var(--theme-text);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.carousel-bottom-controls .carousel-arrow-btn:hover {
  background: var(--theme-surface);
  color: var(--theme-accent);
}

/* Clean up and restore working centering CSS */
.welcome-rotator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.welcome-rotator .welcome-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.welcome-rotator .name {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.75rem !important;
}

.welcome-rotator .welcome-message.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.welcome-rotator .cta-button-elegant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.15rem;
  min-width: 160px;
  max-width: none;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  height: 40px;
  white-space: nowrap;
  text-decoration: none;
}

/* Redesigned store buttons */
.welcome-rotator .store-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 140px;
  border-radius: 12px;
  background: var(--theme-surface);
  color: var(--theme-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  border: 1px solid var(--theme-border);
}

.welcome-rotator .store-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--theme-shadow);
}

.welcome-rotator .store-btn i {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.welcome-rotator .store-btn .store-text {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
}

/* Suite Feature Cards */
.suite-feature-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.suite-feature-card:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.suite-feature-card .feature-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.suite-feature-card .feature-title i {
  color: var(--primary-color);
}

.suite-feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suite-feature-card .feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.suite-feature-card .feature-list li:last-child {
  border-bottom: none;
}

.suite-feature-card .feature-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Platform Feature Cards */
.feature-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

/* YouTube Video Unmute Overlay */
.unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.unmute-overlay:hover {
  transform: scale(1.02);
}

.unmute-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.unmute-content {
  color: white;
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0px  2px 4px rgba(0, 0, 0, 0.8);
}

.unmute-icon {
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(-1px -1px 0 #000) 
          drop-shadow(1px -1px 0 #000) 
          drop-shadow(-1px 1px 0 #000) 
          drop-shadow(1px 1px 0 #000);
}

.unmute-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.5px;
}

.feature-card:hover {
  background: var(--theme-surface);
  border-color: var(--theme-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--theme-shadow);
}

.feature-card .feature-icon {
  color: var(--primary-color);
}

.feature-card .feature-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--theme-text);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--theme-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments for suite sections */
@media (max-width: 991.98px) {
  .suite-feature-card .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-card .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-card .feature-icon i {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .suite-feature-card {
    margin-bottom: 1.5rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* Suite Features Carousel */
.suite-features-swiper {
  padding: 1rem 0;
}

.suite-features-swiper .swiper-slide {
  height: auto;
}

.suite-features-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 2rem;
}

.suite-features-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.suite-features-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Responsive adjustments for suite carousel */
@media (max-width: 991.98px) {
  .suite-features-swiper .swiper-slide {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .suite-features-swiper .swiper-slide {
    width: 50%;
  }
}

/* Header Controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

/* Language Selector Styles */
.language-selector-container {
  display: flex;
  align-items: center;
}

.language-selector {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 12px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5em center !important;
  background-size: 16px;
  padding-right: 2px !important;
}

.language-selector:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.language-selector:focus {
  outline: none;
  color: var(--primary-color);
}

.language-selector option {
  background: #1a1a1a;
  color: white;
  padding: 8px;
}

/* Country Selector Styles */
.country-selector-container {
  display: flex;
  align-items: center;
}

.country-selector {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 12px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5em center !important;
  background-size: 16px;
  padding-right: 2px !important;
}

.country-selector:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.country-selector:focus {
  outline: none;
  color: var(--primary-color);
}

.country-selector option {
  background: #1a1a1a;
  color: white;
  padding: 8px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .header-controls {
    gap: 6px;
  }
  .country-selector-container {
    margin-left: 4px !important;
  }
  .custom-dropdown-toggle {
    font-size: 11px;
    padding: 2px 10px 2px 4px;
    min-width: 40px;
    max-width: 80px;
  }
  .custom-dropdown-menu {
    font-size: 11px;
    min-width: 50px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .header-controls {
    gap: 4px;
  }
  .country-selector-container {
    margin-left: 2px !important;
  }
  .custom-dropdown-toggle {
    font-size: 10px;
    padding: 1px 6px 1px 2px;
    min-width: 30px;
    max-width: 60px;
  }
  .custom-dropdown-menu {
    font-size: 10px;
    min-width: 30px;
    max-width: 60px;
  }
}

  /* Tablet responsive fixes */
  @media (min-width: 768px) and (max-width: 1024px) {
    /* Welcome rotator tablet optimization */
    #welcome-rotator {
      height: 65vh !important;
    }
    
    /* Header controls tablet spacing */
    .header-controls {
      gap: 10px !important;
    }
    
    /* YouTube video tablet height - reduced from 80vh to 50vh */
    #youtube-video {
      height: 50vh !important;
    }
    
    /* Content spacing for tablets */
    .welcome-rotator .name {
      font-size: 1.3rem !important;
    }
    
    .welcome-rotator .lead {
      font-size: 1rem !important;
    }
    
    /* Store buttons tablet sizing */
    .welcome-rotator .store-btn {
      width: 110px !important;
      height: 130px !important;
    }
    
    /* Ensure welcome rotator content is properly centered on tablets */
    #welcome-rotator .welcome-rotator {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      height: 100% !important;
    }
    
    /* Ensure individual welcome messages use full height and center content on tablets */
    #welcome-rotator .welcome-message {
      height: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
    }
  }
  
  /* Mobile responsive fixes for all components */
@media (max-width: 767.98px) {
  /* Mobile optimization for video section */
  #youtube-video {
    height: 30vh !important; /* Reduce height on mobile */
    margin-bottom: 1rem !important; /* Reduce bottom margin on mobile */
  }
  
  /* Adjust spacing between welcome rotator and video on mobile */
  #welcome-rotator {
    margin-bottom: 5vh !important; /* Reduce bottom margin on mobile */
  }
  
  /* Ensure CTA buttons don't wrap on mobile */
  .welcome-rotator .cta-button-elegant {
    min-width: 140px !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    padding: 0.4rem 1rem !important;
  }
  
  /* Mobile dropdown optimization */
  .custom-dropdown-toggle {
    min-width: 40px !important;
    justify-content: center !important;
  }
  
  .custom-dropdown-menu {
    min-width: 60px !important;
  }
  
  .custom-dropdown-option {
    text-align: center !important;
    padding: 0.5rem 0.25rem !important;
  }
  /* Logo size reduction */
  .sticky-header .logo {
    font-size: 18px !important;
  }
  
  .sticky-header .logo span {
    font-size: 18px !important;
  }
  
  /* Hamburger menu size reduction */
  .sticky-menu-toggle {
    width: 24px !important;
    height: 20px !important;
  }
  
  .sticky-menu-toggle span {
    height: 2px !important;
  }
  
  /* Carousel text size reductions */
  .banner-slider .name {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
  
  .carousel-feature-list li {
    font-size: 0.9rem !important;
    margin-bottom: 0.4em !important;
  }
  
  .carousel-feature-list .icon {
    margin-top: 1px !important;
  }
  
  .carousel-feature-list .icon svg {
    width: 16px !important;
    height: 16px !important;
  }
  
  /* Explore suite button size reduction */
  .banner-content:not(.welcome-rotator) .cta-button-elegant {
    font-size: 0.8rem !important;
    padding: 0.4rem 1.2rem !important;
    min-width: 120px !important;
    max-width: 150px !important;
  }
  
  /* Welcome rotator text adjustments */
  .welcome-rotator .name {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  
  .welcome-rotator .cta-button-elegant {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    padding: 0.4rem 1.2rem !important;
    min-width: 120px !important;
  }
  
  /* Store buttons size reduction for mobile */
  .welcome-rotator .store-btn {
    width: 90px !important;
    height: 100px !important;
    padding: 0.4rem !important;
    font-size: 0.75rem !important;
  }
  
  .welcome-rotator .store-btn i {
    font-size: 3rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .welcome-rotator .store-btn .store-text {
    font-size: 0.6rem !important;
    line-height: 1.1 !important;
  }
  
  /* Ensure store buttons fit properly on mobile */
  .welcome-rotator .welcome-message-3 {
    padding-bottom: 2rem !important;
  }
  
  /* Adjust welcome rotator height to accommodate store buttons */
  #welcome-rotator {
    height: 60vh !important;
  }
  
  /* Ensure welcome rotator content is properly centered */
  #welcome-rotator .welcome-rotator {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
  }
  
  /* Tablet-specific welcome rotator adjustments */
  @media (min-width: 768px) and (max-width: 1024px) {
    #welcome-rotator .welcome-rotator {
      padding: 1rem !important;
    }
    
    #welcome-rotator .cta-button-elegant {
      min-width: 140px !important;
      font-size: 0.95rem !important;
    }
  }
  
  /* Tablet optimization */
  @media (min-width: 769px) and (max-width: 1024px) {
    #youtube-video {
      height: 50vh !important; /* Medium height for tablets */
    }
  }
  
  /* Ensure individual welcome messages use full height and center content */
  #welcome-rotator .welcome-message {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Style secondary text in welcome rotator */
  #welcome-rotator .lead {
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  color: var(--theme-text-secondary) !important;
  text-align: center !important;
  margin-top: 1rem !important;
  line-height: 1.4 !important;
}
  
  /* Mobile optimizations for unmute overlay */
  .unmute-overlay {
    background: transparent !important;
  }
  
  .unmute-text {
    font-size: 1rem !important;
  }
  
  .unmute-icon {
    font-size: 1.5rem !important;
  }
  
  /* Header padding reduction */
  .sticky-header {
    padding: 8px 12px !important;
    /* Ensure sticky behavior on mobile */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
  }
}

/* Desktop centering for welcome rotator (screens larger than 1024px) */
@media (min-width: 1025px) {
  /* Ensure welcome rotator content is properly centered on desktop */
  #welcome-rotator .welcome-rotator {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
  }
  
  /* Ensure individual welcome messages use full height and center content on desktop */
  #welcome-rotator .welcome-message {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Language selector improvements */
.language-selector {
  background-position: right 3px center !important;
}

/* Country selector improvements */
.country-selector {
  background-position: right 3px center !important;
}

@media (max-width: 575.98px) {
  /* Even smaller adjustments for very small screens */
  .sticky-header .logo {
    font-size: 16px !important;
  }
  
  .sticky-header .logo span {
    font-size: 16px !important;
  }
  
  .banner-slider .name {
    font-size: 18px !important;
  }
  
  .carousel-feature-list li {
    font-size: 0.85rem !important;
  }
  
  .welcome-rotator .name {
    font-size: 16px !important;
  }
  
  .banner-content:not(.welcome-rotator) .cta-button-elegant {
    font-size: 0.75rem !important;
    padding: 0.35rem 1rem !important;
    min-width: 110px !important;
  }
  
  .welcome-rotator .cta-button-elegant {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 1rem !important;
    min-width: 110px !important;
  }
  
  .sticky-header {
    padding: 6px 10px !important;
    /* Ensure sticky behavior on mobile */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
  }
  
  .sticky-menu-toggle {
    width: 22px !important;
    height: 18px !important;
  }
}

.section-header-overlay {
  background: var(--theme-surface);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 16px var(--theme-shadow);
  margin-bottom: 2rem;
  display: inline-block;
  max-width: 100%;
  border: 1px solid var(--theme-border);
}
@media (max-width: 767.98px) {
  .section-header-overlay {
    padding: 1rem 1rem;
  }
}

/* Override any JavaScript-added classes for nav tabs */
.section-nav.banner-nav-slider .swiper-slide.swiper-slide-thumb-active span,
.section-nav.banner-nav-slider .swiper-slide.active span {
  color: #36C3B6 !important;
  border-color: #36C3B6 !important;
}

/* Specific nav tab colors by position */
.section-nav.banner-nav-slider .swiper-slide:nth-child(2).swiper-slide-thumb-active span,
.section-nav.banner-nav-slider .swiper-slide:nth-child(2).active span {
  color: #36C3B6 !important;
  border-color: #36C3B6 !important;
}
.section-nav.banner-nav-slider .swiper-slide:nth-child(3).swiper-slide-thumb-active span,
.section-nav.banner-nav-slider .swiper-slide:nth-child(3).active span {
  color: #45BB70 !important;
  border-color: #45BB70 !important;
}
.section-nav.banner-nav-slider .swiper-slide:nth-child(4).swiper-slide-thumb-active span,
.section-nav.banner-nav-slider .swiper-slide:nth-child(4).active span {
  color: #36C3B6 !important;
  border-color: #36C3B6 !important;
}
.section-nav.banner-nav-slider .swiper-slide:nth-child(5).swiper-slide-thumb-active span,
.section-nav.banner-nav-slider .swiper-slide:nth-child(5).active span {
  color: #45BB70 !important;
  border-color: #45BB70 !important;
}

/* Override feature card icons with higher specificity */
.suite-feature-card .feature-title i,
.feature-card .feature-icon i {
  color: var(--primary-color) !important;
}

/* Specific suite feature card icon colors */
#admin-suite .suite-feature-card .feature-title i,
#admin-suite .feature-card .feature-icon i {
  color: #36C3B6 !important;
}
#community-suite .suite-feature-card .feature-title i,
#community-suite .feature-card .feature-icon i {
  color: #45BB70 !important;
}
#finance-suite .suite-feature-card .feature-title i,
#finance-suite .feature-card .feature-icon i {
  color: #36C3B6 !important;
}
#employee-suite .suite-feature-card .feature-title i,
#employee-suite .feature-card .feature-icon i {
  color: #45BB70 !important;
}

/* Platform features section - alternate colors for feature cards */
#features .feature-card:nth-child(1) .feature-icon i,
#features .feature-card:nth-child(3) .feature-icon i,
#features .feature-card:nth-child(5) .feature-icon i {
  color: #36C3B6 !important;
}
#features .feature-card:nth-child(2) .feature-icon i,
#features .feature-card:nth-child(4) .feature-icon i,
#features .feature-card:nth-child(6) .feature-icon i {
  color: #45BB70 !important;
}

/* Suite section header alternate colors */
.section-header-overlay .introduction.suite-1 { color: #36C3B6; }
.section-header-overlay .introduction.suite-2 { color: #45BB70; }
.section-header-overlay .introduction.suite-3 { color: #36C3B6; }
.section-header-overlay .introduction.suite-4 { color: #45BB70; }

/* Suite feature card checkmark icon alternate colors */
#admin-suite .suite-feature-card .feature-list li:before { color: #36C3B6; }
#community-suite .suite-feature-card .feature-list li:before { color: #45BB70; }
#finance-suite .suite-feature-card .feature-list li:before { color: #36C3B6; }
#employee-suite .suite-feature-card .feature-list li:before { color: #45BB70; }

/* Suite Page Specific Styles */
.suite-features-swiper {
  height: auto;
  min-height: 400px;
}

.suite-features-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.suite-features-swiper .suite-feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.suite-features-swiper .suite-feature-card .feature-list {
  flex-grow: 1;
}

/* Suite page navigation active states */
.nav__list-item.active-nav a {
  color: var(--primary-color) !important;
}

.nav__list-item.active-nav a:after {
  background-color: var(--primary-color) !important;
}

/* Suite page specific color schemes */
.admin-suite .suite-feature-card .feature-title i,
.admin-suite .feature-card .feature-title i { color: #36C3B6; }

.community-suite .suite-feature-card .feature-title i,
.community-suite .feature-card .feature-title i { color: #45BB70; }

.finance-suite .suite-feature-card .feature-title i,
.finance-suite .feature-card .feature-title i { color: #36C3B6; }

.employee-suite .suite-feature-card .feature-title i,
.employee-suite .feature-card .feature-title i { color: #45BB70; }

/* Pricing Page Styles */
.pricing-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-accent);
  box-shadow: 0 10px 30px var(--theme-shadow);
}

.pricing-card.featured {
  border-color: var(--theme-accent);
  box-shadow: 0 10px 30px var(--theme-shadow);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-accent);
  color: var(--theme-bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-title {
  color: var(--theme-accent);
  font-size: 24px;
  font-weight: 700;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--theme-text);
}

.pricing-price .currency {
  font-size: 24px;
  vertical-align: top;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--theme-text-secondary);
  font-weight: 400;
}

.pricing-subtitle {
  color: var(--theme-text-secondary);
  font-size: 14px;
}

.feature-category {
  color: var(--theme-accent);
  font-size: 16px;
  font-weight: 600;
}

.pricing-limits {
  text-align: center;
  padding: 15px;
  background: var(--theme-surface);
  border-radius: 10px;
}

.pricing-tier {
  background: var(--theme-card-bg);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--theme-border);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.tier-label {
  font-weight: 600;
  color: var(--theme-text);
  font-size: 14px;
}

.tier-price {
  font-weight: 700;
  color: var(--theme-accent);
  font-size: 16px;
}

.tier-note {
  font-size: 12px;
  color: var(--theme-text-muted);
  text-align: right;
  font-style: italic;
}

/* Contact FAB */
.contact-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.contact-fab-button {
  width: 60px;
  height: 60px;
  background: var(--theme-accent);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(54, 195, 182, 0.4);
  color: var(--theme-bg);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fab-button:hover {
  background: var(--theme-accent);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(54, 195, 182, 0.6);
}

.contact-fab-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--theme-shadow);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .contact-fab-menu {
    bottom: 70px;
    right: 0;
    min-width: 140px;
  }
  
  .contact-fab-option {
    padding: 10px 12px;
  }
  
  .contact-fab-option span {
    font-size: 13px;
  }
}

.contact-fab.active .contact-fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-fab-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--theme-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.contact-fab-option:last-child {
  margin-bottom: 0;
}

.contact-fab-option:hover {
  background: var(--theme-accent);
  color: var(--theme-bg);
  transform: translateX(5px);
}

.contact-fab-option i {
  font-size: 18px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.contact-fab-option span {
  font-size: 14px;
  font-weight: 500;
}

/* Contact option specific colors */
.whatsapp-option i {
  color: #25D366;
}

.call-option i {
  color: #007bff;
}

.email-option i {
  color: #dc3545;
}

.contact-fab-option:hover .whatsapp-option i,
.contact-fab-option:hover .call-option i,
.contact-fab-option:hover .email-option i {
  color: var(--theme-bg);
}

/* Pricing Table Styles */
.pricing-table-container {
  background: var(--theme-card-bg);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--theme-border);
}

.pricing-table {
  color: var(--theme-text);
  margin-bottom: 0;
}

.pricing-table th {
  border: none;
  background: rgba(54, 195, 182, 0.1);
  color: var(--primary-color);
  font-weight: 700;
  padding: 20px 15px;
  text-align: center;
}

.pricing-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  vertical-align: middle;
}

.unit-range {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin-bottom: 5px;
}

.price-period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 15px;
}

.enterprise-contact {
  text-align: center;
  padding: 30px;
}

.enterprise-contact i {
  color: var(--primary-color);
}

.enterprise-contact h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.enterprise-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Contact Sales Card */
.contact-sales-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-align: center;
}

.contact-sales-card i {
  color: var(--primary-color);
}

.contact-sales-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-sales-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-table-container {
    padding: 15px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 15px 10px;
  }
  
  .price-amount {
    font-size: 24px;
  }
  
  .unit-range {
    font-size: 14px;
  }
}

/* Suite page feature list bullets */
.admin-suite .suite-feature-card .feature-list li:before,
.admin-suite .feature-card .feature-list li:before { color: #36C3B6; }

.community-suite .suite-feature-card .feature-list li:before,
.community-suite .feature-card .feature-list li:before { color: #45BB70; }

.finance-suite .suite-feature-card .feature-list li:before,
.finance-suite .feature-card .feature-list li:before { color: #36C3B6; }

.employee-suite .suite-feature-card .feature-list li:before,
.employee-suite .feature-card .feature-list li:before { color: #45BB70; }

.footer-small {
  background: var(--theme-surface);
  color: var(--theme-text-secondary);
  font-size: 14px;
  border-top: 1px solid var(--theme-border);
  margin-top: 40px;
}
.footer-small a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}
.footer-small a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Policy Cards */
.policy-card {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(54, 195, 182, 0.3);
}

.policy-card .card-header {
  background: linear-gradient(135deg, #36C3B6, #45BB70);
  color: white;
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.policy-card .card-header:hover {
  background: linear-gradient(135deg, #2db3a6, #3caa60);
}

.policy-card .card-header h5 {
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.policy-card .card-header i {
  transition: transform 0.3s ease;
}

.policy-card .card-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.policy-card .card-body {
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.policy-card .card-body p {
  margin-bottom: 1rem;
  color: #cccccc;
}

.policy-card .card-body p:last-child {
  margin-bottom: 0;
}

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

.policy-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(54, 195, 182, 0.3);
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #36C3B6;
  font-weight: bold;
  font-size: 1.1rem;
}

.policy-card .card-body a {
  color: #36C3B6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-card .card-body a:hover {
  color: #45BB70;
}

/* Collapse animation improvements */
.collapse {
  transition: all 0.3s ease;
}

.collapsing {
  transition: all 0.3s ease;
}

/* Custom Dropdown Styles - Overwrite for compactness and mobile */
.header-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.custom-dropdown {
  position: relative;
  display: inline-block;
  min-width: 60px;
  font-family: inherit;
}
.custom-dropdown-toggle {
  background: var(--theme-surface);
  color: var(--theme-text);
  border: 1px solid var(--theme-border);
  border-radius: 6px;
  padding: 3px 18px 3px 6px;
  font-size: 12px;
  font-weight: 500;
  min-width: 60px;
  max-width: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  outline: none;
  position: relative;
  white-space: nowrap;
}
.custom-dropdown-toggle:focus, .custom-dropdown-toggle:active {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 2px var(--theme-shadow);
}
.custom-dropdown-arrow {
  margin-left: 4px;
  display: flex;
  align-items: center;
  height: 1em;
}
.custom-dropdown-arrow svg {
  display: block;
  vertical-align: middle;
}
.custom-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  z-index: 9999 !important;
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: 6px;
  min-width: 100%;
  max-width: 140px;
  box-shadow: 0 4px 16px var(--theme-shadow);
  margin: 0;
  padding: 2px 0;
  list-style: none;
  font-size: 12px;
}
.custom-dropdown.open .custom-dropdown-menu {
  display: block;
}
.custom-dropdown-option {
  padding: 5px 10px;
  color: var(--theme-text);
  background: none;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
  text-align: left;
  white-space: nowrap;
}
.custom-dropdown-option[aria-selected="true"],
.custom-dropdown-option:hover,
.custom-dropdown-option:focus {
  background: var(--theme-accent);
  color: var(--theme-bg);
}
@media (max-width: 768px) {
  .custom-dropdown-toggle {
    font-size: 11px;
    padding: 2px 10px 2px 4px;
    min-width: 40px;
    max-width: none;
  }
  .custom-dropdown-menu {
    font-size: 11px;
    min-width: 50px;
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .custom-dropdown-toggle {
    font-size: 10px;
    padding: 1px 6px 1px 2px;
    min-width: 30px;
    max-width: none;
  }
  .custom-dropdown-menu {
    font-size: 10px;
    min-width: 30px;
    max-width: 100px;
  }
}

.custom-dropdown-toggle {
  overflow: visible !important;
}

.testimonial-content-wrapper p {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}
.testimonial-author {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.testimonial-meta {
  color: #b0b0b0;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 0.2rem;
}

/* Prevent tagline text wrapping */
.tagline {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

/* Ensure tagline container can handle longer text */
.text-container {
  min-width: 0 !important;
  flex-shrink: 1 !important;
}

/* Header layout optimization for longer taglines */
.sticky-header .logo {
  flex-shrink: 0 !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0px !important;
}

.sticky-header .logo img {
  height: auto !important;
  width: auto !important;
  max-height: 48px !important;
  max-width: 48px !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
}

.sticky-header .text-container {
  min-width: 0 !important;
  flex-shrink: 1 !important;
  overflow: hidden !important;
  min-height: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin-left: 8px !important;
}

.sticky-header .text-container span:first-child {
  font-size: 18px !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
}

.sticky-header .tagline {
  font-size: 0.7rem !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .sticky-header .tagline {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
  }
  
  .sticky-header .text-container {
    max-width: 200px !important;
  }
}

@media (max-width: 576px) {
  .sticky-header .text-container span:first-child {
    font-size: 16px !important;
  }
  
  .sticky-header .tagline {
    max-width: 150px !important;
    font-size: 0.5rem !important;
  }
  
  .sticky-header .text-container {
    max-width: 150px !important;
  }
}

/* Carousel navigation and bottom controls alignment */
.carousel-bottom-controls {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10 !important;
  background: linear-gradient(to top, var(--theme-overlay) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
  padding: 0 !important;
}



/* Carousel navigation arrows */
.carousel-arrow-btn {
  background: var(--theme-surface) !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  color: var(--theme-text) !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px var(--theme-shadow) !important;
}

.carousel-arrow-btn:hover {
  background: var(--theme-accent) !important;
  color: var(--theme-bg) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 12px var(--theme-shadow) !important;
}

/* Carousel toggle button */
.carousel-toggle-btn {
  background: var(--theme-surface) !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  color: var(--theme-text) !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px var(--theme-shadow) !important;
}

.carousel-toggle-btn:hover {
  background: var(--theme-accent) !important;
  color: var(--theme-bg) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 12px var(--theme-shadow) !important;
}

/* Bottom navigation tabs */
.section-nav {
  background: var(--theme-surface) !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: 25px !important;
  padding: 0.5rem 1rem !important;
  box-shadow: 0 4px 16px var(--theme-shadow) !important;
  margin-bottom: 0 !important;
}

.section-nav .swiper-wrapper {
  align-items: center !important;
}

.section-nav .swiper-slide {
  text-align: center !important;
  padding: 0.5rem 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border-radius: 20px !important;
  white-space: normal !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: var(--theme-text) !important;
  line-height: 1.2 !important;
  min-height: 60px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.section-nav .swiper-slide:hover {
  background: var(--theme-accent) !important;
  color: var(--theme-bg) !important;
  transform: translateY(-2px) !important;
}

.section-nav .swiper-slide span {
  display: inline-block !important;
  background: var(--theme-accent) !important;
  color: var(--theme-bg) !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  text-align: center !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.25rem !important;
  flex-shrink: 0 !important;
}

/* Selected tab styling */
.section-nav .swiper-slide.swiper-slide-active {
  background: var(--theme-accent) !important;
  color: var(--theme-bg) !important;
  font-weight: 600 !important;
}

.section-nav .swiper-slide.swiper-slide-active span {
  background: var(--theme-bg) !important;
  color: var(--theme-accent) !important;
  border: 2px solid var(--theme-accent) !important;
  /* Ensure perfect centering with border */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/* Ensure carousel container has proper positioning */
.secondary-carousel-container {
  position: relative !important;
  overflow: hidden !important;
}

/* Background image container alignment */
.swiper-slide {
  position: relative !important;
  overflow: hidden !important;
}

/* —— StartupSocial marketing —— */
:root {
  --ss-navy: #001d4a;
  --ss-cyan: #ff7f00;
  --ss-lime: #ffb347;
}

.ss-logo-lockup .ss-logo-img {
  width: 44px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.ss-brand-wordmark {
  font-size: 1.35rem;
  font-family: "Outfit", "Poppins", sans-serif;
  font-weight: 700;
  color: var(--theme-text);
}

.ss-brand-tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--theme-text-muted) !important;
}

.ss-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
}

.ss-hero-title {
  font-family: "Outfit", "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--theme-text);
}

.ss-lead {
  font-size: 1.15rem;
  color: var(--theme-text-secondary);
  line-height: 1.65;
}

.ss-lead-sm {
  font-size: 1.05rem;
  color: var(--theme-text-secondary);
}

.ss-secondary-line {
  font-size: 0.95rem;
  color: var(--theme-text-muted);
  letter-spacing: 0.02em;
}

.ss-section {
  position: relative;
}

.ss-section-alt {
  background: var(--theme-surface);
  border-block: 1px solid var(--theme-border);
}

.ss-section-title {
  font-family: "Outfit", "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--theme-text);
}

.ss-muted {
  color: var(--theme-text-muted);
}

.ss-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.ss-card-soon {
  opacity: 0.92;
}

.ss-list {
  padding-left: 1.25rem;
  margin: 0;
  color: var(--theme-text-secondary);
}

.ss-list li {
  margin-bottom: 0.35rem;
}

.ss-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 10px;
  color: var(--theme-text);
  font-size: 0.95rem;
}

.ss-pill-static {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.ss-emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.ss-link-arrow {
  color: var(--ss-cyan);
  font-weight: 600;
  text-decoration: none;
}

.ss-link-arrow:hover {
  color: var(--ss-lime);
  text-decoration: underline;
}

.ss-btn-primary {
  background: linear-gradient(135deg, #ffa040, var(--ss-cyan)) !important;
  border: none !important;
  color: #1c0d00 !important;
  font-weight: 600;
  border-radius: 8px !important;
}

.ss-btn-primary:hover {
  filter: brightness(1.08);
  color: #1c0d00 !important;
}

.ss-btn-outline {
  border: 2px solid var(--ss-cyan) !important;
  color: var(--ss-cyan) !important;
  background: transparent !important;
  font-weight: 600;
  border-radius: 8px !important;
}

.ss-btn-outline:hover {
  background: rgba(255, 127, 0, 0.12) !important;
  color: var(--ss-lime) !important;
  border-color: var(--ss-lime) !important;
}

.ss-feature-tile {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ss-feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ss-cyan);
}

.ss-icon-accent {
  color: var(--ss-cyan);
}

.ss-badge-soon {
  background: rgba(182, 228, 48, 0.2) !important;
  color: var(--ss-lime) !important;
  font-weight: 600;
  font-size: 0.65rem;
  vertical-align: middle;
}

.ss-cta-band {
  background: linear-gradient(120deg, rgba(0, 29, 74, 0.55), rgba(255, 127, 0, 0.22));
  border-block: 1px solid var(--theme-border);
}

.ss-form .form-control {
  border-radius: 8px;
}

.ss-page-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.ss-page-hero h1 {
  font-family: "Outfit", "Poppins", sans-serif;
  font-weight: 700;
}

