@charset "UTF-8";

/*------------------------------------------
### Font & Color Variables ###
------------------------------------------*/
/*----- Fonts -----*/
:root {
  --default-font: "Sarabun", sans-serif;
  --header-font: "Noto Sans Thai", sans-serif;
  --navbar-font: "Google Sans", sans-serif;
}

/*----- Global Colors -----*/
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1b110c; /* Default color used for the majority of the text content across the entire website */
  --header-color: #04556a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fd5319; /* 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. */
}

/*----- Navbar Menu Colors -----*/
:root {
  --navbar-color: #f6f6f6;  /* The default color of the main navmenu links */
  --navbar-hover-color: #fd5319; /* Applied to main navmenu links when they are hovered over or active */
  --navbar-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --navbar-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --navbar-dropdown-color: #1b110c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --navbar-dropdown-hover-color: #fd5319; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/*----- Color Presets -----*/
.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.green-background {
  --background-color: #04556a;
  --default-color: #ffffff;
  --header-color: #ffffff;
  --surface-color: #1b110c;
  --contrast-color: #ffffff;
}

/*------------------------------------------
### General Style & Share Class ###
------------------------------------------*/
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), transition 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--header-color);
    font-family: var(--header-font);
}

/*------------------------------------------
### Global Header ###
------------------------------------------*/
.header {
    --background-color: #04556a;
    --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: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--header-color);
    padding-bottom: 5px;
}

.header .logo h1 span {
    color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
    font-style: italic;
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*----- Global Header on Scroll -----*/
.scrolled .header {
    --background-color: #0b3f4d;
}

/*------------------------------------------
### Navber Menu ###
------------------------------------------*/
/*----- Navber menu - 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>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--navbar-color);
        padding: 0 2px;
        font-size: 14px;
        font-family: var(--navbar-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -15px;
        left: 0;
        background-color: var(--navbar-dropdown-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--navbar-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--navbar-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 0;
        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(--navbar-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(--navbar-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 .switch-lang {
        display: flex;
    }

    .navmenu .switch-lang .btn-lang {
        display: inline-block;
        padding: 4px 6px;
        margin-right: 5px;
        background-color: transparent;
        color: #fff;
        border: 1px solid;
        border-color: #fff;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .navmenu .switch-lang .btn-lang:hover {
        color: #fd5319;
        border-color: #fd5319;
        transform: translateY(-3px);
    }
}

/*----- Navber menu - Mobile -----*/
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--navbar-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(--navbar-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(--navbar-dropdown-color);
        padding: 10px 20px;
        font-family: var(--navbar-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(--navbar-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;
    }

    .navmenu .switch-lang {
        display: flex;
        margin-left: 18px;
    }

    .navmenu .switch-lang .btn-lang {
        display: block;
        padding: 4px 6px;
        margin-right: 5px;
        background-color: transparent;
        color: var(--navbar-dropdown-color);
        border: 1px solid;
        border-color: var(--navbar-dropdown-color);
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .navmenu .switch-lang .btn-lang:hover {
        color: #fd5319;
        border-color: #fd5319;
        transform: translateY(-3px);
    }
}

/*------------------------------------------
### Global Footer ###
------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.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 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(--header-color);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--header-font);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

/*------------------------------------------
### Preloader ###
------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*------------------------------------------
### Scroll Top Button ###
------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*------------------------------------------
### Disable aos animation delay on mobile devices ###
------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*------------------------------------------
### Global 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: 66px;
    }
}

/*------------------------------------------
### Hero Section ###
------------------------------------------*/
.hero {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 119px;
}

.hero .hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--header-color);
}

@media (max-width: 992px) {
    .hero .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-content h2 {
        font-size: 2rem;
    }
}

.hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--default-color);
}

.hero .hero-content .hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-btns {
        flex-direction: column;
    }
}

.hero .hero-content .hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.hero .hero-content .hero-btns .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.hero .hero-content .hero-btns .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.hero .hero-content .hero-stats {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.hero .hero-content .hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero .hero-content .hero-stats .stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.hero .hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
    transform: scale(1.03);
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }

    .hero .hero-content {
        margin-bottom: 3rem;
        text-align: center;
    }

    .hero .hero-content .hero-btns {
        justify-content: center;
    }

    .hero .hero-content .hero-stats {
        justify-content: center;
    }
}

/*------------------------------------------
### Global Section Titles ###
------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fd5319;
    text-transform: uppercase;
}

.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;
}

/*------------------------------------------
### About Section ###
------------------------------------------*/
.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 992px) {
    .about .about-title {
        font-size: 2rem;
    }
}

.about .about-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
    margin-bottom: 2rem;
}

.about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about .image-wrapper {
    position: relative;
}

@media (max-width: 992px) {
    .about .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about .image-wrapper .main-image {
        margin-left: 0;
    }
}

.about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
    .about .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
}

.about .info-wrapper h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .info-wrapper img {
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.about .info-wrapper img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*------------------------------------------
### Services Section ###
------------------------------------------*/
.services .service-item {
    position: relative;
    padding: 60px 30px 80px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.services .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.services .service-item .service-icon {
    width: 72px;
    height: 72px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 34px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.services .service-item .service-icon i {
    line-height: 1;
}

.services .service-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services .service-item h3 a {
    color: var(--header-color);
    transition: color 0.3s ease;
}

.services .service-item h3 a span {
    display: inline-block;
    color: var(--accent-color);
}

.services .service-item h3 a:hover {
    color: var(--accent-color);
}

.services .service-item p {
    color: var(--default-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.services .service-item .card-action {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.services .service-item .card-action i {
    transition: transform 0.3s ease;
}

.services .service-item .card-action:hover i {
    transform: rotate(45deg);
}

.services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-item:hover .service-icon {
    transform: scale(1.1);
}

.services .service-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-item:hover .card-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services .service-item {
        padding: 50px 25px 70px;
    }

    .services .service-item h3 {
        font-size: 22px;
    }

    .services .service-item .service-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0 50px;
    }
}

.services .swiper-wrapper {
    height: auto !important;
}

.services .services-grid {
    margin: 30px 0;
}

.services .services-grid .services-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .services-grid .services-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .services-box .services-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services .services-grid .services-box .services-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.services .services-grid .services-box .services-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.services .services-grid .services-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services .services-grid .services-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .services .services-grid {
        margin: 60px 0;
    }
}

.services-industries .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.services-industries .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.services-industries .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.services-cta .services-cta-actions {
    padding: 15px 25px 25px;
}

.services-cta .services-cta-actions .btn-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-cta .services-cta-actions .btn-services i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-cta .services-cta-actions .btn-services:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.services-cta .services-cta-actions .btn-services:hover i {
    transform: translate(3px, -3px);
}

.services-cta .services-cta-actions.featured .btn-services {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.services-cta .services-cta-actions.featured .btn-services:hover {
    background: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
    border-color: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
}

@media (max-width: 768px) {
    .services-cta .services-cta-actions .btn-services {
        padding: 10px 20px 20px;
    }
}

/*------------------------------------------
### Machines Section ###
------------------------------------------*/
.machines .machines-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.machines .machines-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--header-color) 30%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.machines .machines-card:hover::before {
    transform: scaleX(1);
}

.machines .machines-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.machines .machines-card.featured::before {
    transform: scaleX(1);
}

.machines .machines-card.featured .icon-box {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--header-color) 20%));
    color: var(--contrast-color);
}

.machines .machines-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: var(--accent-color);
}

.machines .machines-card .card-header {
    padding: 25px 25px 15px;
    text-align: center;
}

.machines .machines-card .card-header .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.machines .machines-card .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--header-color);
}

.machines .machines-card .card-body {
    padding: 0 25px 15px;
}

.machines .machines-card .card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    text-align: center;
}

.machines .machines-card .card-body .feature-image {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.machines .machines-card .card-body .feature-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.machines .machines-card .card-body .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.machines .machines-card:hover .feature-image::before {
    opacity: 1;
}

.machines .machines-card:hover .feature-image img {
    transform: scale(1.1);
}

.machines .machines-card .card-footer {
    padding: 15px 25px 25px;
}

.machines .machines-card .card-footer .btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.machines .machines-card .card-footer .btn-explore i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.machines .machines-card .card-footer .btn-explore:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.machines .machines-card .card-footer .btn-explore:hover i {
    transform: translate(3px, -3px);
}

.machines .machines-card.featured .btn-explore {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.machines .machines-card.featured .btn-explore:hover {
    background: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
    border-color: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
}

@media (max-width: 768px) {
    .machines .machines-card .card-header {
        padding: 20px 20px 10px;
    }

    .machines .machines-card .card-header .icon-box {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .machines .machines-card .card-header h4 {
        font-size: 16px;
    }

    .machines .machines-card .card-body {
        padding: 0 20px 10px;
    }

    .machines .machines-card .card-body .feature-image {
        height: 140px;
    }

    .machines .machines-card .card-footer {
        padding: 10px 20px 20px;
    }
}

.machinery-overview .machinery-overview-grid {
    margin: 30px 0;
}

.machinery-overview .machinery-overview-grid .machinery-overview-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.machinery-overview .machinery-overview-grid .machinery-overview-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.machinery-overview .machinery-overview-grid .machinery-overview-box .machinery-overview-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.machinery-overview .machinery-overview-grid .machinery-overview-box .machinery-overview-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.machinery-overview .machinery-overview-grid .machinery-overview-box .machinery-overview-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.machinery-overview .machinery-overview-grid .machinery-overview-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.machinery-overview .machinery-overview-grid .machinery-overview-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .machinery-overview .machinery-overview-grid {
        margin: 60px 0;
    }
}

.machinery-quality .machinery-quality-item {
    position: relative;
    padding: 60px 30px 80px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.machinery-quality .machinery-quality-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.machinery-quality .machinery-quality-item .machinery-quality-icon {
    width: 72px;
    height: 72px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 34px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.machinery-quality .machinery-quality-item .machinery-quality-icon i {
    line-height: 1;
}

.machinery-quality .machinery-quality-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.machinery-quality .machinery-quality-item h3 a {
    color: var(--header-color);
    transition: color 0.3s ease;
}

.machinery-quality .machinery-quality-item h3 a span {
    display: inline-block;
    color: var(--accent-color);
}

.machinery-quality .machinery-quality-item h3 a:hover {
    color: var(--accent-color);
}

.machinery-quality .machinery-quality-item p {
    color: var(--default-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.machinery-quality .machinery-quality-item .card-action {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.machinery-quality .machinery-quality-item .card-action i {
    transition: transform 0.3s ease;
}

.machinery-quality .machinery-quality-item .card-action:hover i {
    transform: rotate(45deg);
}

.machinery-quality .machinery-quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.machinery-quality .machinery-quality-item:hover .machinery-quality-icon {
    transform: scale(1.1);
}

.machinery-quality .machinery-quality-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.machinery-quality .machinery-quality-item:hover .card-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .machinery-quality .machinery-quality-item {
        padding: 50px 25px 70px;
    }

    .machinery-quality .machinery-quality-item h3 {
        font-size: 22px;
    }

    .machinery-quality .machinery-quality-item .machinery-quality-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .machinery-quality {
        padding: 70px 0 50px;
    }
}

.production .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.production .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.production .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.production .image-wrapper {
    position: relative;
}

/*------------------------------------------
### Customer Section ###
------------------------------------------*/
.customers .customers-grid {
    margin: 10px 0;
}

.customers .customers-grid .customers-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.customers .customers-grid .customers-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.customers .customers-grid .customers-box .customers-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.customers .customers-grid .customers-box .customers-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.customers .customers-grid .customers-box .customers-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.customers .customers-grid .customers-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.customers .customers-grid .customers-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

.industries .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.industries .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.industries .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.industries .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.customer-segments .swiper-wrapper {
    height: auto !important;
}

.customer-segments .customer-segments-grid {
    margin: 30px 0;
}

.customer-segments .customer-segments-grid .customer-segments-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.customer-segments .customer-segments-grid .customer-segments-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.customer-segments .customer-segments-grid .customer-segments-box .customer-segments-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.customer-segments .customer-segments-grid .customer-segments-box .customer-segments-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.customer-segments .customer-segments-grid .customer-segments-box .customer-segments-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.customer-segments .customer-segments-grid .customer-segments-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.customer-segments .customer-segments-grid .customer-segments-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .customer-segments .customer-segments-grid {
        margin: 60px 0;
    }
}

.customer-trust .customer-trust-intro {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .customer-trust .customer-trust-intro {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

.customer-trust .customer-trust-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .customer-trust .customer-trust-intro h2 {
        font-size: 32px;
    }
}

.customer-trust .customer-trust-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
}

.customer-trust .customer-trust-list-wrapper {
    margin-bottom: 2rem;
}

.customer-trust .customer-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.customer-trust .customer-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.customer-trust .customer-trust-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.customer-trust .customer-trust-image-container {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.customer-trust .customer-trust-image-container img {
    border-radius: 5px;
    border-color: 2px #fff;
}

/*------------------------------------------
### Customers slide Section ###
------------------------------------------*/
.customers-slide {
    padding-top: 10px;
    padding-bottom: 10px;
}

.customers-slide .customers-slider {
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.customers-slide .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
    transition-timing-function: linear;
}

.customers-slide .swiper-slide {
    height: auto;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.customers-slide .swiper-slide:last-child {
    border-right: none;
}

.customers-slide .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    height: 100%;
}

.customers-slide .client-logo img {
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.customers-slide .customers-slide-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .customers-slide .customers-slide-logo {
        padding: 20px;
    }
}

/*------------------------------------------
### Quality & Certificate ###
------------------------------------------*/
.quality .quality-intro {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .quality .quality-intro {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

.quality .quality-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .quality .quality-intro h2 {
        font-size: 32px;
    }
}

.quality .quality-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
}

.quality .quality-list-wrapper {
    margin-bottom: 2rem;
}

.quality .quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality .quality-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quality .quality-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.quality .quality-image-container {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quality .quality-image-container .floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quality .quality-image-container .floating-badge i {
    font-size: 18px;
}

.quality-policy .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.quality-policy .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.quality-policy .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.quality-policy .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.quality-control .swiper-wrapper {
    height: auto !important;
}

.quality-control .quality-control-grid {
    margin: 30px 0;
}

.quality-control .quality-control-grid .quality-control-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.quality-control .quality-control-grid .quality-control-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.quality-control .quality-control-grid .quality-control-box .quality-control-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quality-control .quality-control-grid .quality-control-box .quality-control-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.quality-control .quality-control-grid .quality-control-box .quality-control-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.quality-control .quality-control-grid .quality-control-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quality-control .quality-control-grid .quality-control-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .quality-control .quality-grid {
        margin: 60px 0;
    }
}

/*------------------------------------------
### Gallery / Production Process Section ###
------------------------------------------*/
.products .products-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.products .products-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.products .products-filters li:hover,
.products .products-filters li.filter-active {
    color: var(--accent-color);
}

.products .products-filters li:first-child {
    margin-left: 0;
}

.products .products-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .products .products-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.products .products-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.products .products-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.products .products-content .products-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.products .products-content .products-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.products .products-content .products-info h4 a {
    color: var(--header-color);
    transition: 0.3s;
}

.products .products-content .products-info h4 a:hover {
    color: var(--accent-color);
}

.products .products-content .products-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.products .products-content:hover img {
    transform: scale(1.1);
}

.products .products-cta-actions {
    padding: 15px 25px 25px;
}

.products .products-cta-actions .btn-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products .products-cta-actions .btn-products i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.products .products-cta-actions .btn-products:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.products .products-cta-actions .btn-products:hover i {
    transform: translate(3px, -3px);
}

.products .products-cta-actions.featured .btn-products {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.products .products-cta-actions.featured .btn-products:hover {
    background: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
    border-color: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
}

@media (max-width: 768px) {
    .products .products-cta-actions .btn-products {
        padding: 10px 20px 20px;
    }
}

/*------------------------------------------
### Call to Action Section ###
------------------------------------------*/
.cta .cta-news {
    padding: 20px 0;
}

.cta .cta-news h4 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta .cta-news p {
    font-size: 16px;
}

/*------------------------------------------
### Global Page Titles & Breadcrumbs ###
------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*------------------------------------------
### Company History Section ###
------------------------------------------*/
.history .history-grid {
    margin: 10px 0;
}

.history .history-grid .history-box {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.history .history-grid .history-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.history .history-grid .history-box .history-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.history .history-grid .history-box .history-icon-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.history .history-grid .history-box .history-icon-wrapper i {
    font-size: 32px;
    color: var(--contrast-color);
}

.history .history-grid .history-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.history .history-grid .history-box p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 25px;
}

/*------------------------------------------
### Vision & Policy Section ###
------------------------------------------*/
.vision .vision-item {
    position: relative;
    padding: 60px 30px 80px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.vision .vision-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.vision .vision-item .vision-icon {
    width: 72px;
    height: 72px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 34px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.vision .vision-item .vision-icon i {
    line-height: 1;
}

.vision .vision-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision .vision-item p {
    color: var(--default-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.vision .vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.vision .vision-item:hover .vision-icon {
    transform: scale(1.1);
}

.vision .vision-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
    .vision .vision-item {
        padding: 50px 25px 70px;
    }

    .vision .vision-item h3 {
        font-size: 22px;
    }

    .vision .vision-item .vision-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .vision {
        padding: 70px 0 50px;
    }
}

/*------------------------------------------
### Contact Section ###
------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-cta .contact-cta-actions {
    padding: 15px 25px 25px;
}

.contact-cta .contact-cta-actions .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta .contact-cta-actions .btn-contact i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-cta .contact-cta-actions .btn-contact:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.contact-cta .contact-cta-actions .btn-contact:hover i {
    transform: translate(3px, -3px);
}

.contact-cta .contact-cta-actions.featured .btn-contact {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.contact-cta .contact-cta-actions.featured .btn-contact:hover {
    background: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
    border-color: color-mix(in srgb, var(--accent-color), var(--header-color) 20%);
}

@media (max-width: 768px) {
    .contact-cta .contact-cta-actions .btn-contact {
        padding: 10px 20px 20px;
    }
}