
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #414c64; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff9707; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff9707; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff9707; /* 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: #f6f8fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #414c63;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #556482;
  --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 {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

/*--------------------------------------------------------------
# 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: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    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-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 140px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

.page-title nav 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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 20px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

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

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

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

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

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

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

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

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

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

.call-to-action p {
  color: var(--default-color);
}

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

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

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

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

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

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

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

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

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

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

.contact .php-email-form {
  height: 100%;
}

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

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

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

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

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

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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







.tech-grid {
  margin-top: 10px;
}

.tech-item {
  transition: transform .2s ease, box-shadow .2s ease;
}

.tech-item:hover {
  transform: translateY(-6px);
}

.tech-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(191,159,94,.4);
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.tech-item:hover .tech-img {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.tech-item h4 {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .4px;
}









/* =========================
   EXHIBITIONS – LUXURY DARK VERSION
   ========================= */

.exh-card {
  background: linear-gradient(180deg, rgba(20,20,20,.85), rgba(10,10,10,.95));
  border: 1px solid rgba(255,151,7,.22);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.exh-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,151,7,.55);
  box-shadow: 
    0 18px 55px rgba(0,0,0,.75),
    0 0 28px rgba(255,151,7,.18);
}

/* IMAGE */
.exh-imgwrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000;
}

.exh-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform .4s ease, filter .4s ease;
}

.exh-card:hover .exh-imgwrap img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1.08);
}

/* zoom overlay */
.exh-open {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: transparent; /* nincs sötétítés */
  transition: opacity .2s ease;
}


.exh-open i {
  font-size: 1.6rem;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.exh-imgwrap:hover .exh-open {
  opacity: 1;
}

/* TEXT AREA – HEADER COLOR MATCH */
.exh-body {
  padding: 18px 20px 20px;
  text-align: center;

  /* FEJLÉC SZÍN */
  background: #394257;

  border-top: 1px solid rgba(255, 151, 7, 0.25);
}
.exh-year {
  display: inline-block;
  font-weight: 900;
  font-size: 1.4rem;
  color: #ff9707;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255,151,7,.35);
}

.exh-body h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.exh-body p {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
}


















.press-card {
  display: block;
  background: linear-gradient(180deg, rgba(20,20,20,.9), rgba(8,8,8,.98));
  border: 1px solid rgba(255,151,7,.22);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.press-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,151,7,.55);
  box-shadow: 0 16px 45px rgba(0,0,0,.75);
}

.press-card img {
  width: 100%;
  height: 120px; /* ALACSONYABB KÉPTÉR */
  object-fit: contain;
  display: block;
  background: #111;
  padding: 10px;
  transition: transform .25s ease;
}


.press-card:hover img {
  transform: scale(1.05);
}

.press-body {
  padding: 10px 14px;
  text-align: center;
  background: #394257; /* header szín */
}

.press-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.press-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
  margin: 0;
}




















/* Footer full width background wrappers */
.footer-fullwidth .footer-top-wrap,
.footer-fullwidth .footer-bottom-wrap {
  width: 100%;
}

.footer-fullwidth .footer-top-wrap{
  background: #394257;           /* header szín */
  color: #fff;
  padding: 26px 0;
}

.footer-fullwidth .footer-bottom-wrap{
  background: #2f374a;           /* kicsit sötétebb csík alul */
  color: rgba(255,255,255,.85);
  padding: 16px 0;
}

/* Footer typography */
.footer-fullwidth .footer-title{
  color: #fff;
  margin-bottom: 10px;
}

.footer-fullwidth .footer-text{
  color: rgba(255,255,255,.85);
}

.footer-shopimg{
  max-width: 300px;
  max-height: 197px; /* a képed valós magassága */
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,151,7,.22);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.footer-shopimg img{
  width: 100%;
  height: auto; /* ne torzuljon */
  display: block;
  object-fit: contain;
}


/* Opening hours */
.opening-hours{
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255,151,7,.22);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,.10);
}

.opening-hours .oh-row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: rgba(255,255,255,.88);
  border-bottom: 1px dashed rgba(255,255,255,.15);
}

.opening-hours .oh-row:last-child{
  border-bottom: none;
}

.opening-hours .oh-row span:last-child{
  color: #ff9707; /* accent */
  font-weight: 700;
}

/* links in credits */
.footer-fullwidth .credits a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}
.footer-fullwidth .credits a:hover{
  color: #ff9707;
}


/* Only the Opening Hours block should be centered inside the right column */
.footer-hours,
.footer-hours .footer-title,
.footer-hours .opening-hours {
  text-align: center !important;
}

.footer-hours .opening-hours {
  margin-left: auto;
  margin-right: auto;
}















/* Remove unwanted white strip under footer */
.footer {
  padding-bottom: 0 !important;
}

/* Force full-width background for bottom bar */
.footer-fullwidth .footer-bottom-wrap {
  margin-bottom: 0;
}

/* Ensure no white gap from body */
body {
  margin-bottom: 0;
}



























@media (max-width: 767.98px){
  .portfolio .portfolio-filters { display:none; }
}



/* Portfolio "load more" hide helper (mobile only) */
@media (max-width: 767.98px) {
  #portfolio .portfolio-item.is-hidden {
    display: none !important;
  }
}





















.sizecard{
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.sizebadge{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: var(--contrast-color);
  background: var(--accent-color);
  margin-bottom: 10px;
}

.sizecheck{
  padding-left: 18px;
}
.sizecheck li{
  margin: 8px 0;
}

.size-table-wrap{
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
}
.size-table-wrap table{
  margin-bottom: 0;
}
.size-table-wrap thead th{
  position: sticky;
  top: 0;
  background: #394257;
  color: #fff;
  z-index: 1;
}
.size-table-wrap tbody tr:nth-child(even){
  background: color-mix(in srgb, var(--surface-color), #000 3%);
}
























.resultbox{
  background: #394257;
  border: 1px solid rgba(255,151,7,.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  min-height: 76px;
}
.result-title{
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2px;
}
.result-value{
  font-size: 1.2rem;
  font-weight: 800;
  color: #ff9707;
}























/* ===== Size guide – luxury panel ===== */
.size-lux .size-panel{
  background: linear-gradient(180deg, rgba(57,66,87,.22), rgba(15,15,15,.06));
  border: 1px solid rgba(255,151,7,.18);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.size-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,151,7,.18);
  background: #0f0f12;
}

.size-media img{
  width: 100%;
  display: block;
}

.size-media-actions{
  padding: 12px;
  background: #394257;
  border-top: 1px solid rgba(255,151,7,.12);
}

.size-copy h3{
  margin-bottom: 10px;
}

.size-lead{
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
}

.size-notes{
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.size-notes .note{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(57,66,87,.20);
  border: 1px solid rgba(255,151,7,.10);
}

.size-notes .dot{
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: #ff9707;
  box-shadow: 0 0 14px rgba(255,151,7,.35);
  flex: 0 0 auto;
}

.size-specs{
  border-top: 1px solid rgba(255,151,7,.14);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.size-specs .spec{
  display: grid;
  grid-template-columns: 34px 140px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(255,151,7,.10);
}

.size-specs .tag{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: #111;
  background: #ff9707;
}

.size-specs .lbl{
  font-weight: 800;
  color: #fff;
}

.size-specs .desc{
  color: rgba(255,255,255,.72);
}

.size-divider{
  height: 1px;
  background: rgba(255,151,7,.18);
  margin: 18px 0;
}

.size-sub{
  color: rgba(255,255,255,.72);
}

/* table look (dark header) */
.size-table-wrap{
  border: 1px solid rgba(255,151,7,.14);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.size-table thead th{
  background: #394257;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255,151,7,.18) !important;
}

.size-table tbody td,
.size-table tbody th{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.size-table tbody td{
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.size-table tbody tr:nth-child(even){
  background: #f6f7f9;
}

/* sticky first column */
.size-table .sticky-col{
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fbfbfc;
  font-weight: 900;
  border-right: 1px solid rgba(0,0,0,.06);
  text-align: left !important;
}

.size-table thead .sticky-col{
  z-index: 3;
  background: #394257;
  color: #fff;
  border-right: 1px solid rgba(255,151,7,.18);
}

/* responsive */
@media (max-width: 575.98px){
  .size-lux .size-panel{ padding: 16px; }
  .size-specs .spec{ grid-template-columns: 34px 120px 1fr; }
}




/* ===== Size guide – light text on light panel (requested) ===== */

/* panel maradhat luxus, de a szöveg sötét */
.size-lux .size-panel{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}

/* kép NE legyen sötét */
.size-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
}
.size-media img{
  width: 100%;
  display: block;
  background: #fff;
}

/* fő szövegek sötétek */
.size-copy h3{ color:#111; }
.size-lead{
  color: rgba(0,0,0,.78);
}
.size-notes .note{
  background: #f4f6f9;
  border: 1px solid rgba(0,0,0,.08);
}
.size-notes .note span{
  color: rgba(0,0,0,.80);
}
.size-notes .dot{
  background: #ff9707;
  box-shadow: 0 0 14px rgba(255,151,7,.25);
}

/* A–D “spec” sorok sötét szöveggel */
.size-specs{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 12px;
}
.size-specs .spec{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
}
.size-specs .lbl{ color:#111; }
.size-specs .desc{ color: rgba(0,0,0,.72); }

/* alcím sötét */
.size-sub{
  color: rgba(0,0,0,.65);
}

/* gomb: legyen látható világos háttéren */
#size-guide .btn-outline-light{
  border-color: #394257;
  color: #394257;
}
#size-guide .btn-outline-light:hover{
  background: #394257;
  color: #fff;
}

/* táblázat: minden középre */
.size-table-wrap{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.size-table thead th{
  background: #394257;
  color: #fff;
  text-align: center !important;
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px solid rgba(255,151,7,.18) !important;
}

.size-table tbody td,
.size-table tbody th{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  text-align: center !important;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}

.size-table tbody tr:nth-child(even){
  background: #f6f7f9;
}

/* sticky első oszlop is középen */
.size-table .sticky-col{
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fbfbfc;
  font-weight: 900;
  border-right: 1px solid rgba(0,0,0,.06);
  text-align: center !important;
}

.size-table thead .sticky-col{
  z-index: 3;
  background: #394257;
  color: #fff;
  border-right: 1px solid rgba(255,151,7,.18);
}



@media (max-width: 700px){
  .size-table th,
  .size-table td{
    font-size: 0.85rem;
    padding: 6px 6px;
  }
}















.lang-switcher .btn { border-color: rgba(255,151,7,.45); color:#fff; }
.lang-switcher .btn:hover { background:#394257; }














/* ===============================
   PREMIUM PORTFOLIO (Buday style)
   =============================== */

/* Kártya */
.portfolio .portfolio-item{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

/* Kép: enyhe élet, de ne “zoomoljon” gagyin */
.portfolio .portfolio-item img{
  transition: transform .35s ease, filter .35s ease;
  will-change: transform;
   width: 100%;
  height: auto;
  display: block;
}
.portfolio .portfolio-item:hover img{
  transform: scale(1.02);
  filter: saturate(1.02);
}

/* INFO: legyen mindig látható, de ne sáv legyen – csak egy kis chip */
.portfolio .portfolio-item .portfolio-info{
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  position: absolute;
  left: 14px;
  bottom: 14px;
  right: auto;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(57, 66, 87, .82); /* a header kékjéhez passzol */
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);

  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Title tipó */
.portfolio .portfolio-item .portfolio-info h4{
  margin: 0 !important;
  padding-right: 0 !important;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1;
}

/* A template a preview-linket abszolútra teszi jobbra – ezt nullázzuk */
.portfolio .portfolio-item .portfolio-info .preview-link{
  position: static !important;
  right: auto !important;
  top: auto !important;
  font-size: inherit !important;
}

/* KÖZÉPSŐ NAGYÍTÓ: a teljes kártya közepén */
.portfolio .portfolio-item > .preview-link{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.96);

  width: 58px;
  height: 58px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 22px;

  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  z-index: 5;
}

/* Hoverre jön be szépen */
.portfolio .portfolio-item:hover > .preview-link{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Finom “fény” hoverre, prémium módon */
.portfolio .portfolio-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%);
  opacity: 0;
  transition: .25s ease;
  z-index: 2;
}
.portfolio .portfolio-item:hover::after{
  opacity: 1;
}

/* Mobilon nincs hover: legyen az ikon picit látható (nem ordít), így nem “eltűnik” */
@media (max-width: 767px){
  .portfolio .portfolio-item > .preview-link{
    opacity: .65;
    pointer-events: auto;
  }
}


/* Mobil “Load more” – prémium pill gomb */
.btn-loadmore{
  width: 100%;
  max-width: 520px;
  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 600;
  letter-spacing: .2px;

  background: transparent;
  color: var(--heading-color);

  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 55%);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);

  transition: .2s ease;
}

.btn-loadmore:hover{
  transform: translateY(-1px);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.btn-loadmore:active{
  transform: translateY(0px);
}


/* Load more konténer: középen, szellős */
#portfolio .text-center.mt-4.d-md-none{
  display:flex;
  justify-content:center;
  padding-top: 4px;
}




/* =========================
   ABOUT – premium layout
   ========================= */

.about-premium .about-carousel{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

/* kisebb, elegánsabb nyilak */
.about-premium .carousel-control-prev,
.about-premium .carousel-control-next{
  width: 11%;
  opacity: .9;
}
.about-premium .carousel-control-prev-icon,
.about-premium .carousel-control-next-icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
  transform: scale(.85);
}

/* Szöveges oldal spacing */
.about-premium .about-content{
  padding-left: 0;
}
@media (min-width: 992px){
  .about-premium .about-content{
    padding-left: 18px;
  }
}

.about-premium .about-title{
  margin-bottom: 10px;
}

.about-premium .about-lead{
  margin-bottom: 18px;
  opacity: .92;
  line-height: 1.65;
}

/* Feature lista: nem UL/LI, hanem prémium grid */
.about-premium .about-features{
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}

.about-premium .about-feature{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;

  padding: 12px 12px;
  border-radius: 14px;

  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

/* Ikon badge: visszafogott, elegáns */
.about-premium .about-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(57, 66, 87, .10);  /* a header kékhez passzol */
  border: 1px solid rgba(57, 66, 87, .18);
  color: rgba(57, 66, 87, .95);
}

.about-premium .about-icon i{
  font-size: 20px;
  line-height: 1;
}

/* Cím + leírás tipó */
.about-premium .about-text h4{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.about-premium .about-text p{
  margin: 0;
  opacity: .9;
  line-height: 1.55;
}

/* Záró szöveg */
.about-premium .about-foot{
  margin-top: 10px;
  margin-bottom: 0;
  opacity: .92;
  line-height: 1.65;
}

/* Mobil: kicsit szellősebb */
@media (max-width: 575px){
  .about-premium .about-feature{
    grid-template-columns: 40px 1fr;
    padding: 11px 11px;
  }
  .about-premium .about-icon{
    width: 40px;
    height: 40px;
  }
  .about-premium .about-text h4{
    font-size: 15px;

  }
}



































/* Contact cards (premium) */
.contact .info-card{
  height: 100%;
  padding: 22px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.contact .info-card h4{
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
}

.contact .info-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.contact .info-card a{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.contact .info-card a:hover{
  border-bottom-color: rgba(255,255,255,.65);
}








.map-container{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.map-container iframe{
  display: block;
}









.map-link{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.map-link:hover{
  border-bottom-color: rgba(255,255,255,.8);
}
















