:root {
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-background: #111827;
  --color-card-bg: #1f2937;
  --color-border: #374151;
  --color-text-light: #f9fafb;
  --color-text-muted: #9ca3af;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Ethnocentric', sans-serif;
}
@font-face {
  font-family: "Ethnocentric";
  src: url("../fonts/ethnocentric/ethnocentric rg.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/ethnocentric/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/ethnocentric/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
}
body {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  background-color: var(--color-background);
  overflow-x: hidden;
}
.layout_padding { padding: 100px 0; }
a { color: var(--color-primary); transition: color 0.3s ease; }
a:hover { color: var(--color-primary-hover); text-decoration: none; }
.btn:focus { box-shadow: none !important; }
.header_section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 15px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.header_section.scrolled {
  position: fixed;
  background-color: rgba(31, 41, 55, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { width: 40px; }
.navbar-brand span {
  font-family: var(--font-secondary);
  font-size: 20px;
  color: var(--color-text-light);
  letter-spacing: 1px;
}
.custom_nav-container .navbar-toggler { border: none; outline: none !important; }
.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(249, 250, 251, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-item .nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 20px;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px;
  width: 0; height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item.active .nav-link {
  color: var(--color-text-light);
}
.navbar-nav .nav-item.active .nav-link::after { width: calc(100% - 40px); }
.hero_area .custom_nav-container { flex-direction: column; }
.hero_area .navbar-brand { margin: 0; }
.hero_area .navbar-collapse { flex-grow: 0; }
.hero_area .navbar-nav { margin-top: 15px; }
.sub_page .custom_nav-container { justify-content: space-between; align-items: center; }
.sub_page #navbarSupportedContent { justify-content: flex-end; }
.hero_area {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-background);
  background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.9)), url(../images/hero.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 15vh;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero_section {
  flex-grow: 1; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--color-text-light); position: relative; z-index: 2;
}
.hero_detail h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.hero_detail h3 {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 4vw, 1.5rem);
  margin-top: 1rem;
}
.about_section { position: relative; background-color: var(--color-background); }
.custom_heading {
  font-family: var(--font-secondary);
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}
.about_section .text-center p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-item {
  background-color: var(--color-card-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-primary);
}
.feature-icon { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 20px; }
.feature-item h5 { color: var(--color-text-light); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.feature-item p { color: var(--color-text-muted); line-height: 1.6; }
.btn-main {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
}
.btn-main:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-text-light);
  transform: translateY(-3px);
}
.product_section { background-color: #0d121c; }
.filter_container { max-width: 400px; margin: 0 auto 30px auto; }
.filter_container label { margin-bottom: 10px; font-weight: 600; }
.filter_container .form-control {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  border-radius: 8px;
}
.filter_container .form-control:focus {
  background-color: var(--color-card-bg);
  color: var(--color-text-light);
  border-color: var(--color-primary);
  box-shadow: none;
}
.product-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-primary);
}
.product-image-container { height: 220px; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image { transform: scale(1.05); }
.product-info { padding: 25px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.product-name {
  color: var(--color-text-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  flex-grow: 1;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.btn-view-details {
  display: inline-block;
  padding: 8px 18px;
  background-color: transparent;
  color: var(--color-text-muted);
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.product-card:hover .btn-view-details {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}
.btn-buy-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 25px; background-color: #25d366;
  color: #fff; border: 2px solid #25d366; border-radius: 50px;
  font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-buy-whatsapp:hover { background-color: #128C7E; border-color: #128C7E; color: #fff; }
.btn-buy-whatsapp .whatsapp-btn-icon { height: 20px; width: auto; }
.modal-content {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.modal-header { border-bottom-color: var(--color-border); }
.modal-title { color: var(--color-text-light); font-family: var(--font-secondary); }
.modal-header .close { color: var(--color-text-light); text-shadow: none; opacity: 0.8; }
.modal-header .close:hover { opacity: 1; }
#modalProductName { font-family: var(--font-secondary); color: var(--color-text-light); }
.product-price-modal { color: var(--color-primary); font-weight: 700; font-size: 1.75rem; margin-top: 10px; }
.modal-body .text-muted { color: var(--color-text-muted) !important; line-height: 1.7; }
.client_section { background-color: var(--color-background); }
.testimonial-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 100px;
  font-family: serif;
  color: var(--color-border);
  opacity: 0.5;
  line-height: 1;
  z-index: 1;
}
.testimonial-body { position: relative; z-index: 2; }
.testimonial-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 30px;
}
.testimonial-footer { display: flex; align-items: center; gap: 15px; position: relative; z-index: 2; }
.testimonial-footer img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--color-primary); }
.client-name { font-family: var(--font-primary); font-weight: 700; font-size: 1.1rem; color: var(--color-text-light); margin: 0; }
.client-title { font-size: 0.9rem; color: var(--color-text-muted); }
.client_section .carousel-indicators {
  position: static;
  margin-top: 40px;
  justify-content: center;
}
.client_section .carousel-indicators li {
  background-color: var(--color-border); border-radius: 50%;
  width: 10px; height: 10px; opacity: 0.7; border: none;
}
.client_section .carousel-indicators .active { background-color: var(--color-primary); }
.footer_section {
  background-color: #0d121c;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer_section p { color: var(--color-text-muted); margin: 0; }
.footer_section a { color: var(--color-text-light); }
.footer_section a:hover { color: var(--color-primary); }
.whatsapp-float {
  position: fixed; width: 60px; height: 60px;
  bottom: 30px; right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}
.whatsapp-float img { width: 32px; height: auto; }
.sub_page .hero_area { min-height: auto; background: var(--color-background); clip-path: none; padding-bottom: 0; }
.sub_page .header_section {
  position: static;
  background-color: var(--color-card-bg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}