:root {
  --default-font: system-ui, sans-serif;
  --heading-font: inherit;
  --nav-font: inherit;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #555555; 
  --heading-color: #0d3035; 
  --accent-color: #036dda; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: rgba(255, 255, 255, 0.8);  
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #555555; 
  --nav-dropdown-hover-color: #036dda; 
}


.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

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

: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 !important; 
  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: #0f0000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
  margin-bottom: -10px;
  transition: filter 0.3s ease;
  filter: drop-shadow(-1px -2px 0 #fff) 
	  drop-shadow(0 0 5px rgba(255, 255, 255, 1))
      drop-shadow(0 0 10px rgba(0, 0, 255, 1));
}
.header .logo img:hover {
  transform: scale(1.3);
  filter: drop-shadow(-1px -1px 0 rgba(255, 255, 255, 1))
	  drop-shadow(-3px -3px 5px rgba(0, 0, 255, 1))
}
.header .contact {
  line-height: 1;
}

.whatsapp-box {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  margin: auto 1rem;
  transition: 0.3s;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.whatsapp-box img{
    width: 40px;
    border-radius: 20%; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease; 
	display: inline-block;
	vertical-align: middle;
    margin-right: 10px; 
    cursor: pointer;
}

.whatsapp-box:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.whatsapp-box .whatsapp-text{
    margin: 0; 
	color: var(--surface-color);
    display: inline;
	font-size: 15px;
	font-weight: 500;
    line-height: 1.2;
}
@media (max-width: 768px) {
.header .logo img {
  height: 40px;
}
.whatsapp-box {
  padding: 0.5rem 0.8rem;
}
.whatsapp-box img{
    width: 32px;
}
.whatsapp-box .whatsapp-text{
	font-size: 12px;
}
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .contact {
    order: 2;
    margin: 0 15px 0 0;
  }

  .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: #000000;
}

/*--------------------------------------------------------------
# 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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 20px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 2px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    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: 14px;
    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(--nav-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(--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: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .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: -100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
	right: 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 15px;
    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: 600;
    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;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-about img {
  height: 70px;
  margin: -25px auto 5px;
  transition: filter 0.3s ease;
  filter: drop-shadow(-1px -2px 0 #fff) 
	  drop-shadow(0 0 5px rgba(255, 255, 255, 1))
      drop-shadow(0 0 10px rgba(0, 0, 255, 1));
}
@media (min-width: 992px) {
.footer .footer-about img {
  margin: -25px auto 0 30px;
  }
}
.footer .footer-about img:hover {
  transform: scale(1.3);
  filter: drop-shadow(-1px -1px 0 rgba(255, 255, 255, 1))
	  drop-shadow(-3px -3px 5px rgba(0, 0, 255, 1))
}

.footer .footer-contact p {
  margin-bottom: 10px;
}
.footer .footer-contact p strong {
  padding-right: 5px;
}

.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;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

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


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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  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 {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}
.hero .hero-content {
  padding-bottom: 1rem;
  text-align: center;
}
.hero .hero-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: var(--heading-color);
}

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

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

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--default-color);
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .hero .hero-content .hero-btns .btn {
    padding: 10px 15px;
}
}


.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: 2rem;
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  color: var(--default-color);
}
@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 1.8rem;
}
.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.8rem;
}
}

.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.hero .oem {
  position: relative;
  border: 10px solid var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.hero .oem img{
  width:100%;
  border-radius: 10px;
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.05);
}

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

  .hero .hero-content {
    text-align: center;
  }

  .hero .hero-content .hero-btns {
    justify-content: center;
  }

  .hero .hero-content .hero-stats {
    justify-content: center;
  }
}

.banner-list {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease; 
}

.banner-item {
    width: 25%; 
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-item:hover .banner-img {
    transform: scale(1.05);
}
.banner-text {
    position: absolute;
    bottom: 35px;
    left: 20px;
    color: #fff;
    z-index: 5; 
    max-width: 90%;
    background-color: rgba(3, 109, 218, 0.5); 
    padding: 10px 15px;
    border-radius: 8px;
}

.banner-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
}
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.banner-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: white;
}

@media (max-width: 768px) {
    .banner-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
	.banner-text {
        bottom: 35px;
        left: 15px;
        padding: 10px 10px;
    }
    .banner-text p {
        font-size: 1rem;
        line-height: 1;
    }
}
.banner-container {
    position: relative;
    width: 100%;
    height: 280px;
	margin: 20px 20px 0;
    overflow: hidden;
    box-shadow: 0 4px 12px -4px rgba(0,0,0,0.1);
}

.product-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: fit-content;
    transition: transform 0.1s ease-out;
}

.product-item {
    flex: 0 0 200px;
    height: 200px;
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

.product-item img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-item.active {
    transform: scale(1.4);
	border: 1px solid var(--accent-color);
    z-index: 10;
}

.product-item.grabbing {
    cursor: grabbing;
}

@media (max-width: 992px) {
        .banner-container {
            height: 190px;
			margin: 10px 10px 0;
        }
        .product-item {
			flex: 0 0 130px;
            height: 130px;
            margin: 0 5px;
			touch-action: pan-x;
        }
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.title-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 0;
  border-radius: 5px;
  color: var(--accent-color);
  font-weight: 600;
}
.title-video::before,
.title-video::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 100px;
  background: var(--accent-color);
}
.video-scroll-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding: 6px;
  margin-bottom: 20px;
}
.video-item {
  flex: 0 0 auto;
  width: 200px;
}
.video-item video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.video-scroll-row::-webkit-scrollbar {
  height: 10px;
}
.video-scroll-row::-webkit-scrollbar-thumb {
  background:color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 3px;
}

.product .list-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.product .list-box .title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.product .list-box .title h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.product ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}

.product ul li {
  cursor: pointer;
  color: color-mix(in srgb, var(--surface-color), transparent 10%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  display: flex;
  align-items:center;
  padding: 12px 15px;
  margin: 15px 0;
  transition: 0.3s;
}

.product ul li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.product ul li.filter-active {
  background-color: color-mix(in srgb, red, transparent 10%);
  color: var(--surface-color);
}

.product ul li i {
  display: inline;
  font-size: 20px;
  margin-right: 8px;
  color: var(--surface-color);
}
.product ul li:hover i{
  color: var(--accent-color);
}

.product ul li.filter-active i {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
	.product .list-box {
		padding: 10px;
		margin-bottom: 0px;
	}
	.product .list-box h4 {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}
	.product ul {
		list-style: none;
		display: flex;
		flex-wrap:nowrap;
		width:100%;
		gap:18px;
		justify-content: center;
		margin: 0;
	}
	.product ul li {
		flex: 1;
		min-width: 0; 
		justify-content: center;
		text-align: center;
		font-size: 14px;
		margin: 5px 0;
		padding: 10px;
		color: var(--surface-color);
		background-color: var(--accent-color);
		border-radius: 10px;
		box-shadow: 2px 2px 5px rgba(0, 100, 255, 0.3);
		overflow: visible;
	}
	.product ul li i {
		font-size: 0;
		margin: 0;
	}
}


.product-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
}

.product-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.product-content .product-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 8px;
  position: relative;
  z-index: 2;
}

.product-content h6 {
  font-size: 16px;
  margin-bottom: 5px;
  font-family:var(--default-font);
  white-space: nowrap; 
  overflow: visible;
}
.current-price {
    color: #e53935;
    font-weight: bold;
	padding: 0 5px;
}

.original-price {
    color: #666; 
    text-decoration: line-through;
    font-weight: normal;
	padding: 0 5px;
}

.product-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  text-overflow: ellipsis;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding: 0 5px;
}

.product-content:hover img {
  transform: scale(1.1);
}
.product-content:hover p{
  color: var(--accent-color);
}




/*--------------------------------------------------------------
# Factory Section
--------------------------------------------------------------*/
.factory .factory-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .factory .factory-title {
    font-size: 1.5rem;
  }
}

.factory .factory-description {
  margin: 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.factory .feature-list-wrapper {
  margin-bottom: 0.5rem;
}

.factory .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 5px 0 15px;
}

.factory .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 10px;
  font-size: 1rem;
  white-space: nowrap;
  overflow: visible;
}

.factory .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}
@media (max-width: 768px) {
.factory .feature-list li {
  margin-bottom: 8px;
  font-size: 14px;
}
.factory .feature-list li i {
  font-size: 15px;
}
}

.factory .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.factory .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.factory .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.factory .contact-info {
  padding: 0.5rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.factory .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.factory .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.factory .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.factory .image-wrapper {
  position: relative;
}

.factory .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}


.factory .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}


.factory .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.factory .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.factory .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}


@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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


.factory .factory-counters {
  padding-top: 2.5rem;
}
.factory .factory-counters .boxs {
  margin: 0;
}

.factory .factory-counters .factory-counter-card {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.factory .factory-counters .factory-counter-card img {
  width: 100%;
  transition: transform 0.3s ease;
}
.factory .factory-counters .factory-counter-card:hover{
  transform: scale(1.1);
}


.factory .factory-counters .factory-counter-card .label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: visible;
}

/*--------------------------------------------------------------
# Certificates Section
--------------------------------------------------------------*/
.certificates .certificate-item {
  position: relative;
  padding: 30px;
  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;
}

.certificates .certificate-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

  .certificates .certificate-item img {
    width: 100%;
    object-fit: cover;
  }

@media (max-width: 768px) {
  .certificates .certificate-item {
    padding: 15px;
  }

}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 32px;
}
@media (max-width: 768px) {
  .faq .content h3 {
    font-size: 21px;
  }
}
.faq .content .description{
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 15px 20px;
  margin-bottom: 0px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  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: flex-start;
}

.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 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-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}


.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.contact .info-item a{
  display: flex;
  gap: 1.5rem;
}

.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.2rem;
  color: var(--contrast-color);
}
.contact .info-item .icon-box img {
  font-size: 1.5rem;
  width: 100%;
  border-radius: 12px; 
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 60%);
  transform: scale(1.15);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 400;
}

.contact .info-item .content p {
  font-size: 0.9rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
.contact .info-box {
  padding: 1.5rem;
}
.contact .info-item .icon-box {
  width: 3rem;
  height: 3rem;
}
.contact .info-item .content h4 {
  font-size: 1rem;
}
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
}
.contact .protect{
	display: none;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: -9999px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.4rem 1rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
  border-width: 2px	;
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  font-size: 18px;
  font-weight:bold;
}
.contact .contact-form .btn p {
  font-size: 1.5rem;
}
.contact .contact-form .btn i {
  font-size: 1.5rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}
