/**
* Template Name: CoreBiz
* Template URL: https://bootstrapmade.com/corebiz-bootstrap-business-template/
* Updated: Aug 30 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1c2733; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2341; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1f6b52; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #0b2341;  /* The default color of the main navmenu links */
  --nav-hover-color: #1e4e8c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #0b2341; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1e4e8c; /* 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: #f4f7fa;
  --surface-color: #ffffff;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

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

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

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

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

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

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .content {
  padding: 80px 0;
}

.hero .hero-content .content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 3rem;
  max-width: 90%;
}

.hero .hero-content .content .cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero .hero-content .content .cta-group .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.hero .hero-content .content .cta-group .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .content .cta-group .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
  color: var(--accent-color);
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
  transform: scale(1.1);
}

.hero .hero-content .hero-image {
  position: relative;
  padding: 80px 0;
}

.hero .hero-content .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  width: 100%;
  height: auto;
}

.hero .hero-content .hero-image .floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-image .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1.5rem;
  }
}

.hero .hero-content .hero-image .floating-card .card-content {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-image .floating-card .card-content {
    flex-direction: column;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Robindos Final Overrides
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Inter", "Montserrat", sans-serif;
  --nav-font: "Inter", "Open Sans", sans-serif;
}

.hero.consultancy-hero {
  min-height: 520px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.82) 0%, rgba(7, 26, 47, 0.56) 42%, rgba(31, 107, 82, 0.2) 100%),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.hero.consultancy-hero::before {
  display: none;
}

.hero.consultancy-hero::after {
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 250, 0.88));
}

.hero.consultancy-hero .hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero.consultancy-hero .hero-content > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero.consultancy-hero .hero-content .content {
  padding: 76px 0 70px;
}

.hero.consultancy-hero .hero-content .content h1 {
  max-width: 520px;
  margin-bottom: 1.35rem;
  color: #ffffff;
  font-size: 2.65rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.hero.consultancy-hero .hero-content .content p {
  max-width: 500px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.75;
}

.hero.consultancy-hero .eyebrow {
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero.consultancy-hero .content .cta-group {
  gap: 1rem;
}

.hero.consultancy-hero .content .cta-group .btn-primary {
  padding: 0.85rem 1.45rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-highlights div {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
  color: #ffffff;
}

.hero-highlights strong {
  margin-bottom: 3px;
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero .hero-features {
  position: relative;
  z-index: 3;
  padding: 2.25rem 0;
  background: #f4f7fa;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
}

.hero .hero-features .feature-item {
  min-height: 100%;
  padding: 1.6rem 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 26, 47, 0.08);
}

.service-hero,
.service-hero.compact-service-hero {
  padding: 42px 0 38px;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.95), rgba(31, 107, 82, 0.9)),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.service-hero::before {
  display: none;
}

.service-hero .service-kicker {
  padding: 7px 12px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.service-hero h1 {
  max-width: 860px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-shell {
  padding-top: 46px;
  background: #f7fafc;
}

.service-section-sidebar .services-list {
  max-height: 66vh;
}

.service-section-sidebar .services-list a {
  align-items: flex-start;
  padding: 11px 12px;
  font-size: 0.9rem;
}

.service-section-sidebar .services-list a i {
  margin-top: 0.18em;
  flex-shrink: 0;
}

.service-section-sidebar .services-list a span {
  display: block;
}

.exact-service-content .service-page-card {
  padding: 26px 28px;
  border-radius: 16px;
}

.exact-service-content .service-page-card h2,
.exact-service-content .service-page-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
}

.exact-service-content .service-page-card p {
  margin-bottom: 12px;
  line-height: 1.78;
}

.exact-service-content .service-page-card p:last-child {
  margin-bottom: 0;
}

.subtle-cta {
  background: var(--brand-navy);
}

@media (max-width: 1199px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.35rem;
  }

  .service-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 992px) {
  .hero.consultancy-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 26, 47, 0.92), rgba(31, 107, 82, 0.68)),
      url("../img/hero/robindos-consultancy-hero.webp") center / cover no-repeat;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 64px 0 58px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2rem;
  }

  .hero.consultancy-hero .hero-content .content p {
    font-size: 0.98rem;
  }

  .hero-highlights div {
    min-width: 100%;
  }

  .service-hero,
  .service-hero.compact-service-hero {
    padding: 32px 0 30px;
  }

  .service-hero h1 {
    font-size: 1.65rem;
  }

  .exact-service-content .service-page-card {
    padding: 22px 18px;
  }
}

/*--------------------------------------------------------------
# Robindos Design Corrections
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Inter", "Montserrat", sans-serif;
  --nav-font: "Inter", "Open Sans", sans-serif;
}

.hero.consultancy-hero {
  min-height: 590px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.88) 0%, rgba(7, 26, 47, 0.76) 42%, rgba(31, 107, 82, 0.32) 100%),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.hero.consultancy-hero::before {
  display: none;
}

.hero.consultancy-hero::after {
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 250, 0.88));
}

.hero.consultancy-hero .hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero.consultancy-hero .hero-content > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero.consultancy-hero .hero-content .content {
  padding: 76px 0 70px;
}

.hero.consultancy-hero .hero-content .content h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  font-size: 3.25rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.hero.consultancy-hero .hero-content .content p {
  max-width: 640px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero.consultancy-hero .eyebrow {
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero.consultancy-hero .content .cta-group {
  gap: 1rem;
}

.hero.consultancy-hero .content .cta-group .btn-primary {
  padding: 0.85rem 1.45rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-highlights div {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
  color: #ffffff;
}

.hero-highlights strong {
  margin-bottom: 3px;
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero .hero-features {
  position: relative;
  z-index: 3;
  padding: 2.25rem 0;
  background: #f4f7fa;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
}

.hero .hero-features .feature-item {
  min-height: 100%;
  padding: 1.6rem 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 26, 47, 0.08);
}

.service-hero,
.service-hero.compact-service-hero {
  padding: 42px 0 38px;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.95), rgba(31, 107, 82, 0.9)),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.service-hero::before {
  display: none;
}

.service-hero .service-kicker {
  padding: 7px 12px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.service-hero h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 2.35rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 760px;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-shell {
  padding-top: 46px;
  background: #f7fafc;
}

.service-section-sidebar .services-list {
  max-height: 66vh;
}

.service-section-sidebar .services-list a {
  align-items: flex-start;
  padding: 11px 12px;
  font-size: 0.9rem;
}

.service-section-sidebar .services-list a i {
  margin-top: 0.18em;
  flex-shrink: 0;
}

.service-section-sidebar .services-list a span {
  display: block;
}

.exact-service-content .service-page-card {
  padding: 26px 28px;
  border-radius: 16px;
}

.exact-service-content .service-page-card h2,
.exact-service-content .service-page-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
}

.exact-service-content .service-page-card p {
  margin-bottom: 12px;
  line-height: 1.78;
}

.exact-service-content .service-page-card p:last-child {
  margin-bottom: 0;
}

.subtle-cta {
  background: var(--brand-navy);
}

@media (max-width: 1199px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.9rem;
  }

  .service-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 992px) {
  .hero.consultancy-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 26, 47, 0.92), rgba(31, 107, 82, 0.68)),
      url("../img/hero/robindos-consultancy-hero.webp") center / cover no-repeat;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 64px 0 58px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 576px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2rem;
  }

  .hero.consultancy-hero .hero-content .content p {
    font-size: 0.98rem;
  }

  .hero-highlights div {
    min-width: 100%;
  }

  .service-hero,
  .service-hero.compact-service-hero {
    padding: 32px 0 30px;
  }

  .service-hero h1 {
    font-size: 1.65rem;
  }

  .exact-service-content .service-page-card {
    padding: 22px 18px;
  }
}

.hero .hero-content .hero-image .floating-card .metric {
  text-align: center;
}

.hero .hero-content .hero-image .floating-card .metric .number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-content .hero-image .floating-card .metric .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.hero .hero-features {
  background: var(--surface-color);
  padding: 4rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-features .feature-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.hero .hero-features .feature-item:hover {
  transform: translateY(-5px);
}

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

.hero .hero-features .feature-item .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-features .feature-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.hero .hero-features .feature-item:hover .icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

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

@media (max-width: 992px) {
  .hero .hero-content .content {
    text-align: center;
    padding: 60px 0 40px;
  }

  .hero .hero-content .content p {
    max-width: 100%;
  }

  .hero .hero-content .hero-image {
    padding: 40px 0 60px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
  opacity: 0.03;
  z-index: 1;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  height: 100%;
  padding: 60px 40px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
  overflow: hidden;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-services .service-item:hover::before {
  transform: scaleX(1);
}

.featured-services .service-item:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.featured-services .service-item:hover .service-icon i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.featured-services .service-item:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.featured-services .service-item:hover .service-link i {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .featured-services .service-item {
    padding: 40px 30px;
  }
}

.featured-services .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

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

.featured-services h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-services p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 15px;
}

.featured-services .service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.featured-services .service-link span {
  font-weight: 500;
}

.featured-services .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.featured-services .service-link:hover {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--heading-color);
}

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

.about .content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content .description {
  margin-bottom: 60px;
}

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

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

.about .content .stats-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .about .content .stats-row {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .about .content .stats-row {
    justify-content: space-between;
    gap: 20px;
  }
}

.about .content .stats-row .stat-item {
  text-align: left;
}

.about .content .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about .content .stats-row .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about .content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0;
}

.about .content .cta-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .about .content .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.about .content .cta-section .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.about .content .cta-section .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.about .content .cta-section .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.about .content .cta-section .btn-link:hover {
  color: var(--accent-color);
}

.about .content .cta-section .btn-link:hover i {
  transform: translateX(4px);
}

.about .content .cta-section .btn-link i {
  transition: transform 0.3s ease;
}

.about .image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

@media (max-width: 992px) {
  .about .image-container {
    min-height: 400px;
  }
}

.about .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about .image-container .image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 200px;
}

@media (max-width: 576px) {
  .about .image-container .image-overlay {
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }
}

.about .image-container .image-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about .image-container .image-overlay .overlay-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .image-container .image-overlay .overlay-content .overlay-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.about .image-container .image-overlay .overlay-content .overlay-text p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  --skill-spacing: 40px;
  --icon-size: 60px;
  --progress-height: 4px;
  --border-subtle: color-mix(in srgb, var(--default-color), transparent 90%);
  --text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
  --surface-elevated: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
}

.skills .intro-content {
  margin-bottom: 80px;
}

.skills .intro-content .lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--skill-spacing);
  margin-bottom: 60px;
}

.skills .skill-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}

.skills .skill-item:hover {
  transform: translateY(-4px);
}

.skills .skill-item:hover .skill-icon i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.skills .skill-item .skill-icon {
  margin-bottom: 24px;
}

.skills .skill-item .skill-icon i {
  font-size: var(--icon-size);
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.skills .skill-item .skill-name {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

.skills .skill-item .skill-level {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.skills .skill-item .skill-level .level-text {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  min-width: 90px;
}

.skills .skill-item .skill-level .progress-track {
  flex: 1;
  height: var(--progress-height);
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.skills .skill-item .skill-level .progress-track .progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills .skill-item .skill-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.skills .certification-area {
  padding-top: 60px;
  border-top: 1px solid var(--border-subtle);
}

.skills .certification-area .cert-content .cert-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.skills .certification-area .cert-content .cert-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.skills .certification-area .cert-content .cert-list .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.skills .certification-area .cert-content .cert-list .cert-item:last-child {
  border-bottom: none;
}

.skills .certification-area .cert-content .cert-list .cert-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.skills .certification-area .cert-content .cert-list .cert-item span {
  font-size: 16px;
  color: var(--default-color);
}

.skills .certification-area .tools-showcase .tools-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.skills .certification-area .tools-showcase .tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag {
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .skills .skill-item {
    padding: 28px 0;
  }

  .skills .skill-item .skill-name {
    font-size: 22px;
  }

  .skills .cert-content .cert-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .skills {
    --skill-spacing: 24px;
    --icon-size: 50px;
  }

  .skills .intro-content {
    margin-bottom: 60px;
  }

  .skills .intro-content .lead-text {
    font-size: 18px;
  }

  .skills .certification-area {
    padding-top: 40px;
  }

  .skills .certification-area .tools-showcase {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.stats .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.stats .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-color);
}

.stats .stat-item {
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.stats .stat-item:nth-child(1) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  transform: translateY(-2px);
}

.stats .stat-item .stat-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stat-item .stat-number {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.stats .stat-item .stat-number .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stat-item .stat-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: 0 auto 1.5rem auto;
  opacity: 0.6;
}

.stats .stat-item .stat-label {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.stats .stat-item .stat-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 200px;
}

.stats .achievement-badge {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stats .achievement-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
}

.stats .achievement-badge .badge-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.stats .achievement-badge .badge-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.stats .achievement-badge .badge-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .stats .section-headline {
    font-size: 2.25rem;
  }

  .stats .stats-container {
    gap: 0;
  }

  .stats .stat-item {
    padding: 2.5rem 2rem;
  }

  .stats .stat-item .stat-number {
    font-size: 3rem;
  }

  .stats .stat-item .stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .stats .section-headline {
    font-size: 1.875rem;
  }

  .stats .section-description {
    font-size: 1rem;
  }

  .stats .stats-container {
    grid-template-columns: 1fr;
  }

  .stats .stat-item {
    padding: 2rem 1.5rem;
  }

  .stats .stat-item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stats .stat-item .stat-number {
    font-size: 2.75rem;
  }

  .stats .stat-item .stat-description {
    max-width: 300px;
  }

  .stats .achievement-badge {
    padding: 2rem 1.5rem;
  }

  .stats .achievement-badge .badge-icon {
    font-size: 2rem;
  }

  .stats .achievement-badge .badge-title {
    font-size: 1.25rem;
  }

  .stats .achievement-badge .badge-text {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .client-item {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .client-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.8;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients .client-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .clients .client-item {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 120px 0;
}

.services .service-item {
  padding: 60px 40px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

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

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
  border-radius: 50%;
}

.services .service-icon i {
  font-size: 36px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0;
  line-height: 1.3;
}

.services p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

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

  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }

  .services .service-icon i {
    font-size: 28px;
  }

  .services h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services p {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

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

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0;
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team .member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.team .member-card:hover .member-image-wrapper img {
  transform: scale(1.05);
}

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

.team .member-image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team .member-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.team .member-role {
  font-size: 0.875rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team .member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.team .member-socials {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .member-socials a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 8px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

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

@media (max-width: 991.98px) {
  .team .member-name {
    font-size: 1.15rem;
  }

  .team .member-role {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .team .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .team .member-card {
    box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .team .member-name {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-radius: 16px;
  --card-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  --muted: color-mix(in srgb, var(--default-color), transparent 55%);
  --line: color-mix(in srgb, var(--default-color), transparent 85%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
  --accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
  text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
  color: var(--heading-color);
  opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--accent-soft);
  transition: 0.3s;
  border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background-color: var(--surface-color);
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider {
  background: var(--accent-color);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider::before {
  transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
  color: var(--muted);
}

.pricing .price-card {
  background: var(--surface-color);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.pricing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  background: radial-gradient(1200px 1200px at 110% -10%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 50%) no-repeat, var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 8%);
  color: var(--contrast-color);
}

.pricing .price-card .ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
  font-size: 12px;
}

.pricing .price-card .card-head {
  margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
  font-size: 22px;
  margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
  color: var(--muted);
  margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 800;
  line-height: 1;
  display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
  font-size: 18px;
  top: -0.6em;
  position: relative;
  margin-right: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
  font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.pricing .price-card .feature-list {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.pricing .price-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.pricing .price-card .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
  color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
  color: var(--muted);
}

.pricing .price-card .cta {
  margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-toggle-container~.row .price-card .price-monthly {
  display: inline-flex;
}

.pricing .pricing-toggle-container~.row .price-card .price-yearly {
  display: none;
}

@supports (selector(:has(*))) {
  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-monthly {
    display: none;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-yearly {
    display: inline-flex;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .monthly {
    opacity: 0.6;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .yearly {
    opacity: 1;
    color: var(--heading-color);
  }
}

@supports not (selector(:has(*))) {
  .pricing .pricing-toggle-container .yearly::after {
    content: " ";
  }
}

@media (max-width: 992px) {

  .pricing .price-card .card-head .price-wrap .price.price-monthly,
  .pricing .price-card .card-head .price-wrap .price.price-yearly {
    font-size: 36px;
  }

  .pricing .price-card .card-head .price-wrap .price sup {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .pricing .price-card {
    padding: 22px;
  }

  .pricing .pricing-toggle-container .pricing-toggle {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

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

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: 0;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
  padding: 60px 0;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  height: 100%;
  padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: 0;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-sidebar .contact-methods {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 40px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
  display: flex;
  gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
  font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 40px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

.service-details .service-intro {
  text-align: center;
  margin-bottom: 80px;
}

.service-details .service-intro .service-badge {
  margin-bottom: 24px;
}

.service-details .service-intro .service-badge span {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-details .service-intro h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .service-details .service-intro h1 {
    font-size: 2.5rem;
  }
}

.service-details .service-intro .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-details .service-intro .lead {
    font-size: 1.1rem;
  }
}

.service-details .service-content {
  margin-bottom: 80px;
}

.service-details .visual-section {
  margin-bottom: 80px;
}

.service-details .visual-section .service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .visual-section .service-text {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .service-details .visual-section .service-text {
    padding-left: 0;
    margin-top: 40px;
  }
}

.service-details .visual-section .service-text h2 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .service-details .visual-section .service-text h2 {
    font-size: 1.8rem;
  }
}

.service-details .visual-section .service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.service-details .visual-section .service-text p:last-child {
  margin-bottom: 0;
}

.service-details .features-section {
  margin-bottom: 80px;
  padding: 60px 0;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.service-details .features-section .feature-item {
  text-align: center;
  padding: 0 20px;
}

.service-details .features-section .feature-item .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .features-section .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .features-section .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .features-section .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .process-section {
  margin-bottom: 80px;
}

.service-details .process-section .process-info {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .service-details .process-section .process-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.service-details .process-section .process-info h3 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .service-details .process-section .process-info h3 {
    font-size: 1.6rem;
  }
}

.service-details .process-section .process-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

.service-details .process-section .process-steps .step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.service-details .process-section .process-steps .step:last-child {
  margin-bottom: 0;
}

.service-details .process-section .process-steps .step .step-number {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 500;
}

.service-details .process-section .process-steps .step .step-content h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .process-section .process-steps .step .step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .info-grid .info-card {
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 32px;
}

.service-details .info-grid .info-card .info-header {
  margin-bottom: 24px;
}

.service-details .info-grid .info-card .info-header h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .info-grid .info-card .info-header p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .info-grid .info-card .info-content .price-range {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .info-grid .info-card .info-content .price-range .price-label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-details .info-grid .info-card .info-content .price-range .price-value {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
}

.service-details .info-grid .info-card .info-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .info-grid .info-card .info-content .info-list li {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.service-details .info-grid .info-card .info-content .info-list li:last-child {
  margin-bottom: 0;
}

.service-details .info-grid .info-card .info-content .info-list li::before {
  content: "\\2022";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.service-details .info-grid .info-card .testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  font-style: italic;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .info-grid .info-card .service-form .form-field {
  margin-bottom: 16px;
}

.service-details .info-grid .info-card .service-form input[type=text],
.service-details .info-grid .info-card .service-form input[type=email],
.service-details .info-grid .info-card .service-form input[type=tel],
.service-details .info-grid .info-card .service-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: border-color 0.3s ease;
}

.service-details .info-grid .info-card .service-form input[type=text]:focus,
.service-details .info-grid .info-card .service-form input[type=email]:focus,
.service-details .info-grid .info-card .service-form input[type=tel]:focus,
.service-details .info-grid .info-card .service-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.service-details .info-grid .info-card .service-form input[type=text]::placeholder,
.service-details .info-grid .info-card .service-form input[type=email]::placeholder,
.service-details .info-grid .info-card .service-form input[type=tel]::placeholder,
.service-details .info-grid .info-card .service-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .info-grid .info-card .service-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.service-details .info-grid .info-card .service-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.service-details .info-grid .info-card .service-form .submit-btn i {
  font-size: 0.85rem;
}

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

  .service-details .service-intro {
    margin-bottom: 60px;
  }

  .service-details .service-content {
    margin-bottom: 60px;
  }

  .service-details .visual-section,
  .service-details .features-section,
  .service-details .process-section {
    margin-bottom: 60px;
  }

  .service-details .features-section .row>div {
    margin-bottom: 40px;
  }

  .service-details .features-section .row>div:last-child {
    margin-bottom: 0;
  }

  .service-details .info-grid .row>div {
    margin-bottom: 32px;
  }

  .service-details .info-grid .row>div:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 5rem;
  --content-spacing: 4rem;
  --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.portfolio-details .project-hero .hero-content .project-category {
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.portfolio-details .project-hero .hero-content .project-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: 0;
}

.portfolio-details .project-hero .hero-content .project-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  margin-bottom: 0;
}

.portfolio-details .project-hero .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
  text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details .visual-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
  right: 30px;
}

.portfolio-details .content-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
  text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: 0;
}

.portfolio-details .content-section .project-overview .overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase {
  padding: 4rem 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  margin: var(--section-spacing) -15px;
  border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.4;
}

.portfolio-details .technology-stack {
  margin-bottom: var(--section-spacing);
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.portfolio-details .process-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
  grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
  transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.portfolio-details .key-features-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
  padding-right: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-details .key-features-section .features-list .feature-row:last-child {
  margin-bottom: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details .project-footer {
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  color: var(--heading-color);
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
  font-size: 1rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-details .content-section .project-overview .challenge-solution {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2.25rem;
  }

  .portfolio-details .metrics-showcase .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .key-features-section .features-intro {
    margin-bottom: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 3rem;
  }

  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 0.9rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2rem;
  }

  .portfolio-details .project-footer .footer-navigation {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
  .portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
    order: -1;
  }

  .portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .gallery-masonry {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-masonry .gallery-item.large {
    grid-row: span 1;
  }

  .portfolio-details .metrics-showcase {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "\\2022";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy 2 Section
--------------------------------------------------------------*/
.privacy-2 {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-2 .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy-2 .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-2 .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy-2 .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy-2 .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy-2 .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy-2 .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy-2 .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy-2 .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

.privacy-2 .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy-2 .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy-2 .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-content .content-section ul li::before {
  content: "\\2022";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy-2 .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy-2 .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-2 .privacy-contact p {
  margin-bottom: 20px;
}

.privacy-2 .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy-2 .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy-2 .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy-2 .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy-2 {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy-2 .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy-2 h1 {
    font-size: 24pt;
  }

  .privacy-2 h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy-2 h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy-2 p,
  .privacy-2 ul {
    page-break-inside: avoid;
  }

  .privacy-2 .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy-2 .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy-2 .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy-2 .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy-2 .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy-2 .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy-2 .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

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

/*--------------------------------------------------------------
# Robindos Business Consultancy - Custom Homepage
--------------------------------------------------------------*/
:root {
  --brand-navy: #0b2341;
  --brand-blue: #1e4e8c;
  --brand-green: #1f6b52;
  --brand-gold: #c9a227;
  --brand-soft: #f4f7fa;
}

.header .topbar .status-text {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 13px;
  letter-spacing: 0;
}

.hero.consultancy-hero {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--brand-gold), transparent 80%) 0%, transparent 28%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
}

.hero.consultancy-hero::before {
  opacity: 0.06;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.hero.consultancy-hero .hero-content .content h1,
.hero.consultancy-hero .hero-content .content p,
.hero.consultancy-hero .hero-content .cta-group .btn-secondary,
.hero.consultancy-hero .hero-content .cta-group .btn-secondary span {
  color: #ffffff;
}

.hero.consultancy-hero .hero-content .content p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 95%;
}

.hero.consultancy-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero.consultancy-hero .eyebrow i {
  color: var(--brand-gold);
}

.hero.consultancy-hero .content .cta-group .btn-primary {
  background: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: 0 16px 35px color-mix(in srgb, var(--brand-green), transparent 72%);
}

.hero.consultancy-hero .content .cta-group .btn-primary:hover {
  background: color-mix(in srgb, var(--brand-green), black 12%);
}

.hero.consultancy-hero .content .cta-group .btn-secondary i {
  color: var(--brand-gold);
}

.hero.consultancy-hero .hero-image .floating-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11, 35, 65, 0.06);
}

.hero.consultancy-hero .hero-image .floating-card .metric .number {
  color: var(--brand-blue);
}

.hero.consultancy-hero .hero-features {
  background: #ffffff;
}

.consultancy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--brand-green), transparent 78%);
  background: color-mix(in srgb, var(--brand-green), transparent 93%);
  color: var(--brand-green);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.consultancy-licence .licence-panel {
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--brand-blue), transparent 95%) 100%);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid color-mix(in srgb, var(--brand-blue), transparent 88%);
  box-shadow: 0 14px 50px rgba(0,0,0,0.05);
  height: 100%;
}

.consultancy-licence .licence-panel h3 {
  font-size: 1.9rem;
  margin: 18px 0 16px;
}

.consultancy-licence .licence-panel p {
  line-height: 1.85;
  margin-bottom: 18px;
}

.consultancy-licence .licence-facts {
  display: grid;
  gap: 14px;
}

.consultancy-licence .fact-card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--brand-green), transparent 86%);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.consultancy-licence .fact-card .label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
}

.consultancy-licence .fact-card .value {
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.65;
}

.consultancy-licence .licence-note {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-gold), transparent 90%) 0%, #fff 100%);
  border-left: 4px solid var(--brand-gold);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 22px;
  line-height: 1.8;
}

.about .content .stats-row.consultancy-stats .stat-item .stat-number {
  color: var(--brand-blue);
}

.consultancy-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-green);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.84rem;
  margin-bottom: 18px;
}

.consultancy-mini-title i {
  color: var(--brand-gold);
}

.featured-services.consultancy-primary .service-item .service-icon {
  background: color-mix(in srgb, var(--brand-blue), transparent 89%);
}

.featured-services.consultancy-primary .service-item .service-icon i {
  color: var(--brand-blue);
}

.featured-services.consultancy-primary .service-item:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
}

.featured-services.consultancy-primary .service-link {
  color: var(--brand-green);
}

.featured-services.consultancy-primary .service-item::before {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.service-lines .service-line-card,
.registration-types .type-card,
.credibility-grid .credibility-card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 20px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 10px 34px rgba(0,0,0,0.04);
  transition: 0.35s ease;
}

.service-lines .service-line-card:hover,
.registration-types .type-card:hover,
.credibility-grid .credibility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-lines .icon-box,
.registration-types .icon-box,
.credibility-grid .icon-box {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-green), transparent 89%);
  color: var(--brand-green);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-lines .service-line-card h4,
.registration-types .type-card h4,
.credibility-grid .credibility-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-lines .service-line-card p,
.registration-types .type-card p,
.credibility-grid .credibility-card p {
  margin-bottom: 0;
  line-height: 1.75;
}

.registration-types .type-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.registration-types .type-card ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.consultancy-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  border-radius: 28px;
  padding: 42px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.consultancy-banner h3,
.consultancy-banner p {
  color: #ffffff;
}

.consultancy-banner p {
  color: rgba(255,255,255,0.84);
  margin-bottom: 0;
}

.consultancy-banner .btn-consultancy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-green);
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.consultancy-banner .btn-consultancy:hover {
  background: color-mix(in srgb, var(--brand-green), black 12%);
  color: #ffffff;
  transform: translateY(-2px);
}

.consultancy-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--brand-blue), transparent 92%);
  color: var(--brand-blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0 8px 10px 0;
}

.consultancy-note-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-blue), transparent 94%) 0%, #ffffff 100%);
  border: 1px solid color-mix(in srgb, var(--brand-blue), transparent 84%);
  border-radius: 20px;
  padding: 24px;
}

.consultancy-note-box h4 {
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .consultancy-licence .licence-panel,
  .consultancy-banner {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .consultancy-licence .licence-panel,
  .consultancy-banner {
    padding: 22px;
    border-radius: 20px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.1rem;
  }
}

/*--------------------------------------------------------------
# Robindos Premium Polish
--------------------------------------------------------------*/
:root {
  --brand-ink: #071a2f;
  --brand-copper: #b46b4a;
  --premium-shadow: 0 24px 70px rgba(7, 26, 47, 0.14);
  --premium-shadow-strong: 0 34px 90px rgba(7, 26, 47, 0.22);
}

.header {
  backdrop-filter: blur(18px);
}

.header .branding {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 26, 47, 0.08);
}

.header .logo {
  gap: 12px;
}

.header .brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(31, 107, 82, 0.28);
}

.header .brand-copy {
  display: grid;
  line-height: 1.05;
}

.header .brand-copy small {
  color: color-mix(in srgb, var(--brand-navy), transparent 32%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navmenu .dropdown ul {
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.hero.consultancy-hero {
  min-height: calc(100vh - 104px);
  background:
    linear-gradient(115deg, rgba(7, 26, 47, 0.97) 0%, rgba(11, 35, 65, 0.94) 46%, rgba(31, 107, 82, 0.88) 100%),
    url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
}

.hero.consultancy-hero::before {
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero.consultancy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.hero.consultancy-hero .hero-content .content {
  padding: 110px 0 82px;
}

.hero.consultancy-hero .hero-content .content h1 {
  font-size: 5rem;
  line-height: 1.02;
  font-weight: 850;
  max-width: 760px;
  letter-spacing: 0;
}

.hero.consultancy-hero .hero-content .content p {
  font-size: 1.12rem;
  max-width: 680px;
}

.hero.consultancy-hero .eyebrow {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero.consultancy-hero .content .cta-group .btn-primary,
.about .content .cta-section .btn-primary,
.consultancy-banner .btn-consultancy,
.service-page-cta,
.contact .contact-form-container .contact-form .send-button {
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(31, 107, 82, 0.24);
}

.hero.consultancy-hero .hero-content .hero-image {
  padding: 90px 0;
}

.hero.consultancy-hero .hero-content .hero-image > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(1.5deg);
  animation: heroImageFloat 7s ease-in-out infinite;
}

.hero.consultancy-hero .hero-image .floating-card,
.hero-trust-card {
  animation: premiumFloat 5.8s ease-in-out infinite;
}

.hero-trust-card {
  position: absolute;
  right: -16px;
  top: 118px;
  max-width: 270px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(7, 26, 47, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-trust-card i {
  color: var(--brand-gold);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hero-trust-card span {
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero .hero-features .feature-item,
.featured-services .service-item,
.service-lines .service-line-card,
.registration-types .type-card,
.credibility-grid .credibility-card,
.consultancy-licence .fact-card,
.service-page-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero .hero-features .feature-item::after,
.featured-services .service-item::after,
.service-lines .service-line-card::after,
.registration-types .type-card::after,
.credibility-grid .credibility-card::after,
.service-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.72) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.hero .hero-features .feature-item:hover::after,
.featured-services .service-item:hover::after,
.service-lines .service-line-card:hover::after,
.registration-types .type-card:hover::after,
.credibility-grid .credibility-card:hover::after,
.service-page-card:hover::after {
  transform: translateX(130%);
}

.featured-services .service-item,
.service-lines .service-line-card,
.registration-types .type-card,
.credibility-grid .credibility-card {
  border-radius: 22px;
  box-shadow: var(--premium-shadow);
}

.featured-services .service-item:hover,
.service-lines .service-line-card:hover,
.registration-types .type-card:hover,
.credibility-grid .credibility-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--premium-shadow-strong);
}

.service-lines .service-link-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-lines .service-link-card > span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-green);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.licence-image-frame {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.08);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.licence-image-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fafc;
}

.licence-image-frame span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 26, 47, 0.84);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.about .image-container img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.contact .contact-form-container .form-intro h2,
.contact .contact-sidebar .contact-header h3 {
  letter-spacing: 0;
}

.contact .contact-sidebar {
  border-radius: 28px;
  box-shadow: var(--premium-shadow);
}

.contact-map-card {
  height: 280px;
  margin: -28px 0 42px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 47, 0.08);
  box-shadow: 0 20px 45px rgba(7, 26, 47, 0.12);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

/*--------------------------------------------------------------
# Robindos Service Pages
--------------------------------------------------------------*/
.service-detail-page .page-title,
.service-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(7, 26, 47, 0.96), rgba(31, 107, 82, 0.88)),
    url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
}

.service-detail-page .page-title::before,
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
}

.service-detail-page .page-title .container,
.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero {
  padding: 86px 0 72px;
}

.service-hero .service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-hero h1 {
  color: #ffffff;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 850;
  max-width: 900px;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.75;
}

.service-shell {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 55%);
}

.service-sidebar {
  position: sticky;
  top: 110px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.08);
  box-shadow: var(--premium-shadow);
}

.service-sidebar h4 {
  margin: 0;
  padding: 20px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
  font-size: 1rem;
  font-weight: 850;
}

.service-sidebar .services-list {
  max-height: 62vh;
  overflow-y: auto;
  padding: 10px;
}

.service-sidebar .services-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: color-mix(in srgb, var(--brand-navy), transparent 12%);
  font-weight: 700;
  line-height: 1.35;
}

.service-sidebar .services-list a:hover,
.service-sidebar .services-list a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
}

.service-sidebar .sidebar-cta {
  padding: 20px;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
  background: #f8fafc;
}

.service-sidebar .sidebar-cta a {
  width: 100%;
  justify-content: center;
}

.service-content-stack {
  display: grid;
  gap: 24px;
}

.service-page-card {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.08);
  box-shadow: var(--premium-shadow);
}

.service-page-card h2,
.service-page-card h3,
.service-page-card h4 {
  margin-bottom: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.service-page-card p,
.service-page-card li {
  color: color-mix(in srgb, var(--default-color), transparent 16%);
  line-height: 1.82;
}

.service-page-card ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  margin: 16px 0 0;
  list-style: none;
}

.service-page-card li {
  position: relative;
  padding-left: 30px;
}

.service-page-card li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: "bootstrap-icons";
  color: var(--brand-green);
  font-weight: 700;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.service-summary-item {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.08);
  box-shadow: 0 16px 45px rgba(7, 26, 47, 0.1);
}

.service-summary-item i {
  color: var(--brand-gold);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.service-summary-item span {
  display: block;
  color: var(--brand-navy);
  font-weight: 850;
}

.service-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: #ffffff;
  background: var(--brand-green);
  font-weight: 800;
}

.service-page-cta:hover {
  color: #ffffff;
  background: color-mix(in srgb, var(--brand-green), black 12%);
  transform: translateY(-2px);
}

@keyframes premiumFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes heroImageFloat {
  0%, 100% {
    transform: rotate(1.5deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(0.4deg) translate3d(0, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.consultancy-hero .hero-content .hero-image > img,
  .hero.consultancy-hero .hero-image .floating-card,
  .hero-trust-card {
    animation: none;
  }
}

@media (max-width: 1199px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 4rem;
  }

  .service-hero h1 {
    font-size: 3.5rem;
  }

  .hero-trust-card {
    right: 18px;
  }
}

@media (max-width: 992px) {
  .hero.consultancy-hero {
    min-height: auto;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 76px 0 34px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    max-width: none;
  }

  .hero-trust-card {
    position: relative;
    top: auto;
    right: auto;
    max-width: none;
    margin-top: 18px;
  }

  .service-sidebar {
    position: relative;
    top: 0;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .header .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .brand-copy small {
    display: none;
  }

  .hero.consultancy-hero .hero-content .content h1,
  .service-hero h1 {
    font-size: 2.25rem;
  }

  .licence-image-frame span {
    position: static;
    margin-top: 12px;
  }

  .contact-map-card {
    height: 230px;
    margin-top: 0;
  }

  .service-page-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

/*--------------------------------------------------------------
# Robindos Final Overrides
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Inter", "Montserrat", sans-serif;
  --nav-font: "Inter", "Open Sans", sans-serif;
}

.hero.consultancy-hero {
  min-height: 590px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.88) 0%, rgba(7, 26, 47, 0.76) 42%, rgba(31, 107, 82, 0.32) 100%),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.hero.consultancy-hero::before {
  display: none;
}

.hero.consultancy-hero::after {
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 250, 0.88));
}

.hero.consultancy-hero .hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero.consultancy-hero .hero-content > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero.consultancy-hero .hero-content .content {
  max-width: 540px;
  padding: 48px 0 50px;
}

.hero.consultancy-hero .hero-content .content h1 {
  max-width: 520px;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 2.55rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.hero.consultancy-hero .hero-content .content p {
  max-width: 500px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero.consultancy-hero .eyebrow {
  padding: 8px 14px;
  max-width: 420px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0;
  white-space: normal;
}

.hero.consultancy-hero .content .cta-group {
  gap: 1rem;
}

.hero.consultancy-hero .content .cta-group .btn-primary {
  padding: 0.85rem 1.45rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-highlights div {
  min-width: 112px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
  color: #ffffff;
}

.hero-highlights strong {
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 800;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero .hero-features {
  position: relative;
  z-index: 3;
  padding: 2.25rem 0;
  background: #f4f7fa;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
}

.hero .hero-features .feature-item {
  min-height: 100%;
  padding: 1.6rem 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 26, 47, 0.08);
}

.service-hero,
.service-hero.compact-service-hero {
  padding: 42px 0 38px;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.95), rgba(31, 107, 82, 0.9)),
    url("../img/hero/robindos-consultancy-hero.webp") center right / cover no-repeat;
}

.service-hero::before {
  display: none;
}

.service-hero .service-kicker {
  padding: 7px 12px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.service-hero h1 {
  max-width: 860px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-shell {
  padding-top: 46px;
  background: #f7fafc;
}

.service-section-sidebar .services-list {
  max-height: 66vh;
}

.service-section-sidebar .services-list a {
  align-items: flex-start;
  padding: 11px 12px;
  font-size: 0.9rem;
}

.service-section-sidebar .services-list a i {
  margin-top: 0.18em;
  flex-shrink: 0;
}

.service-section-sidebar .services-list a span {
  display: block;
}

.exact-service-content .service-page-card {
  padding: 26px 28px;
  border-radius: 16px;
}

.exact-service-content .service-page-card h2,
.exact-service-content .service-page-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
}

.exact-service-content .service-page-card p {
  margin-bottom: 12px;
  line-height: 1.78;
}

.exact-service-content .service-page-card p:last-child {
  margin-bottom: 0;
}

.subtle-cta {
  background: var(--brand-navy);
}

@media (max-width: 1199px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.35rem;
  }

  .service-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 992px) {
  .hero.consultancy-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 26, 47, 0.92), rgba(31, 107, 82, 0.68)),
      url("../img/hero/robindos-consultancy-hero.webp") center / cover no-repeat;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 44px 0 46px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.15rem;
  }
}

@media (max-width: 576px) {
  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 1.82rem;
  }

  .hero.consultancy-hero .hero-content .content p {
    font-size: 0.98rem;
  }

  .hero-highlights div {
    min-width: 100%;
  }

  .service-hero,
  .service-hero.compact-service-hero {
    padding: 32px 0 30px;
  }

  .service-hero h1 {
    font-size: 1.65rem;
  }

  .exact-service-content .service-page-card {
    padding: 22px 18px;
  }
}

/* Homepage hero centered layout */
.hero.consultancy-hero {
  display: block;
  min-height: 0;
  overflow: visible;
  background: #f4f7fa;
  text-align: initial;
}

.hero.consultancy-hero::before,
.hero.consultancy-hero::after {
  display: none;
}

.hero.consultancy-hero .hero-content {
  display: block;
}

.hero.consultancy-hero .hero-content > .container {
  width: 100%;
  max-width: 100%;
  min-height: clamp(520px, 47.9vw, 760px);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.35), rgba(7, 26, 47, 0.66)),
    linear-gradient(90deg, rgba(7, 26, 47, 0.34), rgba(31, 107, 82, 0.22)),
    url("../img/hero/robindos-consultancy-hero.webp") center center / contain no-repeat,
    linear-gradient(135deg, #071a2f 0%, #12324a 48%, #1f6b52 100%);
}

.hero.consultancy-hero .hero-content > .container > .row {
  width: min(100%, 1140px);
  margin: 0 auto;
  justify-content: center;
}

.hero.consultancy-hero .hero-content > .container > .row > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.hero.consultancy-hero .hero-content .content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px 16px 66px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.hero.consultancy-hero .eyebrow {
  display: inline-flex;
  max-width: none;
  margin: 0 auto 18px;
  padding: 9px 18px;
  justify-content: center;
  font-size: 0.74rem;
  white-space: normal;
}

.hero.consultancy-hero .hero-content .content h1 {
  max-width: 920px;
  margin: 0 auto 1rem;
  font-size: clamp(2.35rem, 4.1vw, 4.45rem);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.hero.consultancy-hero .hero-content .content p {
  max-width: 780px;
  margin: 0 auto 1.55rem;
  font-size: 1.05rem;
  line-height: 1.72;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero.consultancy-hero .content .cta-group,
.hero.consultancy-hero .hero-highlights {
  justify-content: center;
}

.hero.consultancy-hero .hero-highlights {
  margin-top: 22px;
}

.hero.consultancy-hero .hero-highlights div {
  min-width: 126px;
  padding: 12px 15px;
}

.hero.consultancy-hero .hero-features {
  padding: 2.25rem 0;
  background: #f4f7fa;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
  text-align: center;
}

.hero.consultancy-hero .hero-features .feature-item {
  min-height: 100%;
  padding: 1.6rem 1.2rem;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .hero.consultancy-hero .hero-content > .container {
    min-height: 520px;
    background-size: cover, cover, auto 100%, cover;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 58px 10px 54px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 576px) {
  .hero.consultancy-hero .hero-content > .container {
    min-height: 500px;
    padding: 0 14px;
  }

  .hero.consultancy-hero .hero-content .content {
    padding: 44px 0 42px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 1.9rem;
  }

  .hero.consultancy-hero .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
  }
}

/* Mobile, menu, and section precision */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe,
video {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .navmenu > ul > li > a {
    position: relative;
  }

  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-green);
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .navmenu > ul > li > a.active::after,
  .navmenu > ul > li:hover > a::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1199px) {
  .header .branding .container {
    min-height: 76px;
  }

  .navmenu ul {
    inset: 72px 14px 18px;
    max-height: calc(100dvh - 96px);
    border-radius: 18px;
    padding: 12px;
  }

  .navmenu a,
  .navmenu a:focus {
    min-height: 46px;
    border-radius: 12px;
    white-space: normal;
  }

  .navmenu a.active,
  .navmenu a.active:focus {
    background: color-mix(in srgb, var(--brand-green), transparent 90%);
  }

  .navmenu .dropdown ul {
    margin: 8px 0 8px 10px;
    max-height: 44vh;
    overflow-y: auto;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  section,
  .section {
    padding: 44px 0;
    scroll-margin-top: 92px;
  }

  .header .topbar {
    font-size: 0.78rem;
  }

  .header .topbar .container,
  .header .topbar .contact-info {
    gap: 6px 12px;
    flex-wrap: wrap;
  }

  .header .topbar .contact-info i {
    margin-left: 0 !important;
  }

  .logo {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    font-size: 1.4rem;
  }

  .brand-copy .sitename {
    font-size: 1.75rem;
    line-height: 1.05;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .hero.consultancy-hero .hero-content > .container {
    min-height: 540px;
    background-size: cover, cover, contain, cover;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    max-width: 720px;
    font-size: 2.05rem;
  }

  .hero.consultancy-hero .hero-content .content p {
    max-width: 640px;
    font-size: 0.95rem;
  }

  .hero.consultancy-hero .content .cta-group {
    gap: 0.75rem;
  }

  .hero.consultancy-hero .content .cta-group .btn-primary,
  .hero.consultancy-hero .content .cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero.consultancy-hero .hero-highlights div {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .consultancy-licence .licence-panel,
  .exact-service-content .service-page-card,
  .service-page-card,
  .contact .contact-form-container,
  .contact .contact-sidebar {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .consultancy-licence .licence-panel h3,
  .contact .contact-form-container .form-intro h2 {
    font-size: 1.55rem;
  }

  .licence-image-frame img {
    width: 100%;
  }

  .service-sidebar {
    position: static;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .service-sidebar .services-list,
  .service-section-sidebar .services-list {
    max-height: none;
  }

  .contact-map-card {
    min-height: 260px;
  }

  .contact-map-card iframe {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .brand-copy .sitename {
    font-size: 1.48rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .hero.consultancy-hero .hero-content > .container {
    min-height: 560px;
  }

  .hero.consultancy-hero .hero-content .content h1 {
    font-size: 1.72rem;
  }

  .hero.consultancy-hero .eyebrow {
    padding: 8px 12px;
  }

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

/* Final precision pass: service scroller, index spacing, dropdown polish */
.index-page section:not(.hero),
.index-page .section:not(.hero) {
  padding-top: 50px;
  padding-bottom: 50px;
}

.index-page .hero.consultancy-hero {
  padding: 0;
}

.index-page .section-title {
  padding-bottom: 34px;
}

.index-page .consultancy-licence {
  padding-top: 48px;
  padding-bottom: 48px;
}

.index-page .consultancy-licence .row {
  align-items: flex-start !important;
}

.consultancy-licence .licence-panel {
  height: auto;
}

.consultancy-licence .licence-facts {
  gap: 12px;
}

.consultancy-licence .fact-card {
  padding: 16px 18px;
  border-radius: 15px;
}

.consultancy-licence .fact-card .label {
  margin-bottom: 6px;
  font-size: 0.74rem;
}

.consultancy-licence .fact-card .value {
  line-height: 1.5;
}

@media (min-width: 992px) {
  .service-detail-page {
    height: 100dvh;
    overflow: hidden;
  }

  .service-detail-page .main {
    height: calc(100dvh - var(--service-header-height, 124px));
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .service-detail-page .service-hero,
  .service-detail-page .service-hero.compact-service-hero {
    flex: 0 0 auto;
    padding: 22px 0 20px;
  }

  .service-detail-page .service-hero h1 {
    max-width: 1000px;
    font-size: 1.9rem;
  }

  .service-detail-page .service-hero p {
    margin-top: 8px;
    font-size: 0.95rem;
  }

  .index-page .consultancy-licence .licence-panel {
    position: sticky;
    top: 112px;
    padding: 30px;
  }

  .index-page .consultancy-licence .licence-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-page .consultancy-licence .fact-card:nth-child(2),
  .index-page .consultancy-licence .fact-card:nth-child(5),
  .index-page .consultancy-licence .fact-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .service-detail-page .service-shell {
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 22px;
    overflow: hidden;
  }

  .service-detail-page .service-shell > .container {
    height: 100%;
    min-height: 0;
  }

  .service-detail-page .service-shell > .container > .row {
    --bs-gutter-y: 0;
    height: 100%;
    min-height: 0;
    align-items: stretch;
  }

  .service-detail-page .service-shell .col-lg-3,
  .service-detail-page .service-shell .col-lg-9 {
    display: flex;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .service-detail-page .service-sidebar {
    position: relative;
    top: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-detail-page .service-sidebar .services-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .service-detail-page .service-sidebar .sidebar-cta {
    flex: 0 0 auto;
  }

  .service-detail-page .service-content-stack {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 4px 12px 4px 4px;
    scroll-behavior: smooth;
    scroll-padding-top: 14px;
  }

  .service-detail-page .service-content-stack .service-page-card + .service-page-card {
    margin-top: 18px;
  }

  .service-detail-page .service-content-stack [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-detail-page .service-content-stack::-webkit-scrollbar,
  .service-detail-page .service-sidebar .services-list::-webkit-scrollbar,
  .navmenu > ul > .dropdown > ul::-webkit-scrollbar {
    width: 8px;
  }

  .service-detail-page .service-content-stack::-webkit-scrollbar-thumb,
  .service-detail-page .service-sidebar .services-list::-webkit-scrollbar-thumb,
  .navmenu > ul > .dropdown > ul::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-green), transparent 50%);
  }

  .service-detail-page .service-page-card {
    scroll-margin-top: 14px;
  }

  .service-sidebar .services-list a.active {
    box-shadow: 0 12px 26px rgba(31, 107, 82, 0.18);
  }

  .service-detail-page .footer {
    display: none;
  }
}

/* Final polish: loader, about balance, mobile menu, clean service numbering */
#preloader {
  background:
    radial-gradient(circle at 50% 42%, rgba(31, 107, 82, 0.16), transparent 28%),
    linear-gradient(135deg, #06182c 0%, #0b2341 48%, #1f6b52 100%);
}

#preloader::before {
  content: "R";
  position: absolute;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-green);
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

#preloader::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--brand-gold);
  border-right-color: rgba(255, 255, 255, 0.78);
  animation: premium-loader-spin 0.95s linear infinite;
}

#preloader div {
  display: none;
}

@keyframes premium-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.index-page .about .row {
  align-items: stretch !important;
}

.index-page .about .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-page .about .image-container {
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
}

.index-page .about .image-container img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.service-page-card .section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--brand-green);
  background: color-mix(in srgb, var(--brand-green), transparent 88%);
  font-size: 0.76em;
  font-weight: 900;
  vertical-align: middle;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    margin: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 26, 47, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: var(--brand-navy);
    box-shadow: 0 12px 28px rgba(7, 26, 47, 0.1);
    z-index: 10002;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    color: #ffffff;
    background: var(--brand-green);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(7, 26, 47, 0.74);
    backdrop-filter: blur(7px);
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    position: fixed;
    inset: 76px 16px 18px;
    max-height: none;
    padding: 14px;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
  }

  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    color: var(--brand-navy);
  }

  .mobile-nav-active .navmenu a.active,
  .mobile-nav-active .navmenu a:hover {
    color: var(--brand-green);
    background: color-mix(in srgb, var(--brand-green), transparent 91%);
  }

  .mobile-nav-active .navmenu .dropdown > .dropdown-active {
    margin: 8px 0 8px 10px;
    padding: 8px;
    border-radius: 16px;
    background: #f7fafc;
  }
}

@media (max-width: 991px) {
  .index-page .about .image-container {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-top: 10px;
  }

  .index-page .about .image-container img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 576px) {
  #preloader::before {
    width: 66px;
    height: 66px;
    border-radius: 19px;
    font-size: 1.8rem;
  }

  #preloader::after {
    width: 98px;
    height: 98px;
  }
}

@media (min-width: 1200px) {
  .navmenu > ul > .dropdown > ul {
    left: 50%;
    right: auto;
    top: calc(100% + 10px);
    width: min(440px, calc(100vw - 40px));
    min-width: 390px;
    max-height: min(72vh, 620px);
    padding: 12px;
    border: 1px solid rgba(7, 26, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 70px rgba(7, 26, 47, 0.18);
    transform: translate(-50%, 10px);
    overflow-y: auto;
  }

  .navmenu > ul > .dropdown:hover > ul {
    top: calc(100% + 10px);
    transform: translate(-50%, 0);
  }

  .navmenu > ul > .dropdown > ul::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(7, 26, 47, 0.1);
    border-top: 1px solid rgba(7, 26, 47, 0.1);
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(-50%) rotate(45deg);
  }

  .navmenu > ul > .dropdown > ul li {
    min-width: 0;
  }

  .navmenu > ul > .dropdown > ul a {
    position: relative;
    z-index: 1;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.32;
    white-space: normal;
  }

  .navmenu > ul > .dropdown > ul a:hover,
  .navmenu > ul > .dropdown > ul a.active {
    color: var(--brand-green);
    background: color-mix(in srgb, var(--brand-green), transparent 91%);
  }
}

@media (max-width: 991px) {
  .service-detail-page .service-content-stack {
    height: auto;
    overflow: visible;
    padding-right: 0;
  }
}

/* Academic-style service pages: normal content scroll with sticky menu */
@media (min-width: 992px) {
  .service-detail-page {
    height: auto;
    overflow: visible;
  }

  .service-detail-page .main {
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
  }

  .service-detail-page .service-hero,
  .service-detail-page .service-hero.compact-service-hero {
    padding: 42px 0 38px;
  }

  .service-detail-page .service-hero h1 {
    max-width: 900px;
    font-size: 2.1rem;
  }

  .service-detail-page .service-shell {
    padding-top: 46px;
    padding-bottom: 58px;
    overflow: visible;
  }

  .service-detail-page .service-shell > .container,
  .service-detail-page .service-shell > .container > .row {
    height: auto;
    min-height: 0;
  }

  .service-detail-page .service-shell > .container > .row {
    align-items: stretch;
  }

  .service-detail-page .service-shell .col-lg-3,
  .service-detail-page .service-shell .col-lg-9 {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .service-detail-page .service-sidebar {
    position: sticky;
    top: 112px;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 136px);
    display: block;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .service-detail-page .service-sidebar h4 {
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .service-detail-page .service-sidebar .services-list {
    max-height: none;
    overflow: visible;
  }

  .service-detail-page .service-content-stack {
    display: grid;
    gap: 24px;
    width: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
    scroll-behavior: auto;
  }

  .service-detail-page .service-content-stack .service-page-card + .service-page-card {
    margin-top: 0;
  }

  .service-detail-page .service-page-card {
    scroll-margin-top: 132px;
  }

  .service-detail-page .service-content-stack [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-detail-page .footer {
    display: block;
  }
}

/* Compact premium Core Services cards */
.index-page .featured-services.consultancy-primary {
  padding-top: 46px;
  padding-bottom: 48px;
}

.index-page .featured-services.consultancy-primary .section-title {
  padding-bottom: 24px;
}

.index-page .featured-services.consultancy-primary .section-title h2 {
  margin-bottom: 14px;
}

.index-page .featured-services.consultancy-primary .section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 1rem;
  line-height: 1.55;
}

.index-page .featured-services.consultancy-primary .row.g-5 {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}

.index-page .featured-services.consultancy-primary .service-item {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  border: 1px solid rgba(7, 26, 47, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.94)),
    #ffffff;
  box-shadow: 0 14px 36px rgba(7, 26, 47, 0.08);
}

.index-page .featured-services.consultancy-primary .service-item::before {
  height: 3px;
  transform: scaleX(1);
  opacity: 0.9;
}

.index-page .featured-services.consultancy-primary .service-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(7, 26, 47, 0.14);
}

.index-page .featured-services.consultancy-primary .service-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand-blue), transparent 91%);
  box-shadow: inset 0 0 0 1px rgba(35, 86, 145, 0.08);
}

.index-page .featured-services.consultancy-primary .service-icon i {
  font-size: 1.65rem;
  color: var(--brand-blue);
}

.index-page .featured-services.consultancy-primary h3 {
  max-width: 100%;
  margin: 0 0 11px;
  color: var(--brand-navy);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.index-page .featured-services.consultancy-primary p {
  margin: 0 0 18px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: left;
}

.index-page .featured-services.consultancy-primary .service-link {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 26, 47, 0.08);
  color: var(--brand-green);
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 1;
  transform: none;
}

.index-page .featured-services.consultancy-primary .service-link span {
  font-weight: 800;
}

.index-page .featured-services.consultancy-primary .service-link i {
  color: var(--brand-gold);
}

@media (min-width: 1200px) {
  .index-page .featured-services.consultancy-primary .service-item {
    min-height: 318px;
  }
}

@media (max-width: 991px) {
  .index-page .featured-services.consultancy-primary .service-item {
    padding: 24px 22px 22px;
  }
}

/* Robindos magic layer: hero, proof, journey, finder, licence and mega menu */
.hero.consultancy-hero .hero-content > .container {
  position: relative;
  overflow: hidden;
}

.hero.consultancy-hero .hero-content > .container > .row {
  position: relative;
  z-index: 2;
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
}

.hero-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-signal-row i {
  color: var(--brand-gold);
}

.hero-magic-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-document-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 142px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(7, 26, 47, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: hero-float 7s ease-in-out infinite;
}

.hero-document-card i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-navy);
  background: var(--brand-gold);
}

.hero-document-card span {
  font-weight: 900;
  font-size: 0.86rem;
}

.hero-document-one {
  left: 9%;
  top: 18%;
}

.hero-document-two {
  right: 9%;
  top: 27%;
  animation-delay: -2.2s;
}

.hero-document-three {
  right: 16%;
  bottom: 17%;
  animation-delay: -4.4s;
}

.hero-orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 12px rgba(210, 166, 55, 0.12), 0 0 36px rgba(210, 166, 55, 0.55);
  animation: orbit-pulse 3s ease-in-out infinite;
}

.hero-orbit-one {
  left: 24%;
  bottom: 22%;
}

.hero-orbit-two {
  right: 28%;
  top: 16%;
  animation-delay: -1.5s;
}

.trust-strip {
  padding: 30px 0;
  background: #ffffff;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(7, 26, 47, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 250, 0.96)),
    #ffffff;
  box-shadow: 0 20px 60px rgba(7, 26, 47, 0.08);
}

.trust-proof {
  min-height: 120px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(7, 26, 47, 0.06);
}

.trust-number,
.trust-plus {
  color: var(--brand-green);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.trust-proof p {
  margin: 8px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-proof-wide {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--brand-navy);
}

.trust-proof-wide i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--brand-navy);
  background: var(--brand-gold);
}

.trust-proof-wide p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.business-journey {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
}

.business-journey::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(90deg, transparent, rgba(31, 107, 82, 0.08), transparent);
  pointer-events: none;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-gold), var(--brand-blue));
  box-shadow: 0 0 24px rgba(31, 107, 82, 0.24);
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 22px;
  border: 1px solid rgba(7, 26, 47, 0.08);
  border-radius: 20px;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 26, 47, 0.08);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.journey-step:hover {
  transform: translateY(-10px);
  border-color: rgba(31, 107, 82, 0.24);
  box-shadow: 0 28px 70px rgba(7, 26, 47, 0.14);
}

.journey-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(31, 107, 82, 0.2);
}

.journey-step i:not(.bi-arrow-right) {
  position: absolute;
  right: 18px;
  top: 24px;
  color: var(--brand-gold);
  font-size: 1.45rem;
}

.journey-step h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.28;
}

.journey-step p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 27%);
  font-size: 0.92rem;
  line-height: 1.55;
}

.journey-step-final {
  background:
    linear-gradient(145deg, rgba(7, 26, 47, 0.96), rgba(31, 107, 82, 0.92)),
    var(--brand-navy);
}

.journey-step-final h3,
.journey-step-final p {
  color: #ffffff;
}

.service-finder {
  position: relative;
  background:
    radial-gradient(circle at 16% 24%, rgba(210, 166, 55, 0.16), transparent 30%),
    linear-gradient(135deg, #071a2f 0%, #12324a 50%, #1f6b52 100%);
  color: #ffffff;
  overflow: hidden;
}

.service-finder .section-title h2,
.service-finder .section-title p {
  color: #ffffff;
}

.service-finder .section-title h2::before {
  background: rgba(255, 255, 255, 0.34);
}

.finder-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.finder-panel,
.finder-result {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.finder-panel {
  padding: 26px;
}

.finder-panel .consultancy-mini-title {
  color: #ffffff;
}

.finder-panel .consultancy-mini-title span,
.finder-option span {
  color: #ffffff;
}

.finder-options {
  display: grid;
  gap: 12px;
}

.finder-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  text-align: left;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.finder-option i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.78);
}

.finder-option:hover,
.finder-option.active {
  transform: translateX(6px);
  border-color: rgba(210, 166, 55, 0.64);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.finder-option.active i {
  background: var(--brand-gold);
}

.finder-result {
  position: relative;
  padding: 34px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.finder-result.is-updating {
  opacity: 0.7;
  transform: translateY(4px);
}

.finder-result::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.result-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result h3 {
  position: relative;
  max-width: 680px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.finder-result p {
  position: relative;
  max-width: 680px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

.finder-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}

.finder-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.finder-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.service-finder .btn-consultancy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--brand-navy) !important;
  background: var(--brand-gold);
  box-shadow: 0 18px 42px rgba(210, 166, 55, 0.26);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-finder .btn-consultancy span,
.service-finder .btn-consultancy i {
  color: var(--brand-navy);
}

.service-finder .btn-consultancy:hover {
  transform: translateY(-3px);
  color: var(--brand-navy) !important;
  background: #f1c95d;
  box-shadow: 0 24px 54px rgba(210, 166, 55, 0.34);
}

.finder-contact-link {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.licence-image-frame {
  isolation: isolate;
}

.licence-image-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(210, 166, 55, 0.32);
  border-radius: 16px;
  pointer-events: none;
}

.licence-image-frame .licence-seal {
  left: auto;
  right: 25px;
  top: 25px;
  bottom: auto;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(210, 166, 55, 0.52);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(210, 166, 55, 0.95), rgba(31, 107, 82, 0.94));
  box-shadow: 0 18px 45px rgba(31, 107, 82, 0.28);
  font-size: 0.76rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  animation: seal-glow 3.6s ease-in-out infinite;
}

.licence-image-frame .licence-seal i {
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .navmenu > ul > li.services-mega > ul.services-mega-menu {
    left: 50%;
    right: auto;
    top: calc(100% + 12px);
    width: min(920px, calc(100vw - 40px));
    min-width: 0;
    max-height: min(74vh, 640px);
    display: grid;
    grid-template-columns: 1.16fr repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    transform: translate(-50%, 12px);
  }

  .navmenu > ul > li.services-mega:hover > ul.services-mega-menu {
    top: calc(100% + 12px);
    transform: translate(-50%, 0);
  }

  .navmenu > ul > li.services-mega > ul.services-mega-menu::before {
    left: 50%;
  }

  .navmenu > ul > li.services-mega > ul.services-mega-menu > li {
    min-width: 0;
  }

  .services-mega-menu .mega-feature a,
  .services-mega-menu .mega-group {
    height: 100%;
    border-radius: 17px;
    background: #f6fafb;
  }

  .services-mega-menu .mega-feature a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    color: var(--brand-navy);
  }

  .services-mega-menu .mega-feature i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 14px;
    color: var(--brand-navy);
    background: var(--brand-gold);
    font-size: 1.1rem;
  }

  .services-mega-menu .mega-feature span {
    display: grid;
    gap: 5px;
  }

  .services-mega-menu .mega-feature strong {
    font-size: 0.96rem;
  }

  .services-mega-menu .mega-feature small {
    color: color-mix(in srgb, var(--default-color), transparent 34%);
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: normal;
  }

  .services-mega-menu .mega-group {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 14px;
  }

  .services-mega-menu .mega-label {
    display: block;
    margin: 0 0 5px;
    color: var(--brand-green);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .navmenu > ul > li.services-mega > ul.services-mega-menu .mega-group a {
    padding: 8px 9px;
    font-size: 0.82rem;
    line-height: 1.25;
  }
}

@media (max-width: 1199px) {
  .hero-magic-layer {
    display: none;
  }

  .trust-strip-inner,
  .journey-track,
  .finder-shell {
    grid-template-columns: 1fr;
  }

  .journey-track::before {
    left: 26px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 3px;
    height: auto;
  }

  .journey-step {
    min-height: 0;
    padding-left: 76px;
  }

  .journey-number {
    position: absolute;
    left: 16px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mobile-nav-active .services-mega-menu .mega-feature a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-gold), transparent 88%);
  }

  .mobile-nav-active .services-mega-menu .mega-feature i {
    color: var(--brand-gold);
  }

  .mobile-nav-active .services-mega-menu .mega-feature span {
    display: grid;
    gap: 3px;
  }

  .mobile-nav-active .services-mega-menu .mega-feature small,
  .mobile-nav-active .services-mega-menu .mega-label {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.76rem;
    line-height: 1.35;
    white-space: normal;
  }

  .mobile-nav-active .services-mega-menu .mega-label {
    margin: 10px 8px 4px;
    color: var(--brand-green);
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav-active .services-mega-menu .mega-group a {
    padding-left: 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .hero-signal-row span {
    font-size: 0.78rem;
  }

  .trust-proof {
    min-height: 0;
  }

  .finder-panel,
  .finder-result {
    padding: 22px;
    border-radius: 20px;
  }

  .finder-option {
    align-items: flex-start;
  }

  .licence-image-frame .licence-seal {
    width: 96px;
    height: 96px;
    right: 18px;
    top: 18px;
    padding: 13px;
    font-size: 0.62rem;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(1.5deg);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes seal-glow {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  50% {
    transform: rotate(-5deg) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-document-card,
  .hero-orbit-dot,
  .licence-image-frame .licence-seal {
    animation: none;
  }
}

/* Fixed site header across all pages */
body {
  padding-top: var(--site-header-height, 124px);
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9997;
  background: var(--background-color);
}

.scrolled .header .topbar {
  height: 40px;
  visibility: visible;
  overflow: visible;
}

section,
.section,
.page-title {
  scroll-margin-top: calc(var(--site-header-height, 124px) + 18px);
}

.service-detail-page .service-sidebar {
  top: calc(var(--site-header-height, 124px) + 16px);
  max-height: calc(100vh - var(--site-header-height, 124px) - 36px);
}

.service-detail-page .service-page-card {
  scroll-margin-top: calc(var(--site-header-height, 124px) + 24px);
}

@media (max-width: 575px) {
  body {
    padding-top: var(--site-header-height, 116px);
  }

  .header .topbar {
    min-height: 40px;
  }
}
