.product-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.product-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.specs-box {
  border-left: 4px solid var(--primary-color);
}
.spec-badges .badge {font-size:.6rem;letter-spacing:.5px;font-weight:600;padding:.45rem .75rem;}
.spec-badges.no-wrap {display:flex;flex-wrap:nowrap;gap:8px;overflow:auto;padding-bottom:2px;}
.spec-badges.no-wrap::-webkit-scrollbar{height:4px;}
.spec-badges.no-wrap::-webkit-scrollbar-thumb{background:rgba(26,75,132,.4);border-radius:4px;}
.spec-heading {position:relative;font-size:1.05rem;font-weight:700;letter-spacing:.5px;padding-left:10px;text-transform:uppercase;color:var(--primary-color);}
.spec-heading:before {content:"";position:absolute;left:0;top:4px;bottom:4px;width:4px;border-radius:2px;background:linear-gradient(180deg,var(--primary-color),var(--secondary-color));}
.spec-grid {display:grid;grid-template-columns:1fr;gap:12px;}
@media (min-width:480px){.spec-grid {grid-template-columns:1fr;}}
@media (min-width:576px){.spec-grid {grid-template-columns:1fr;}}
@media (min-width:768px){.spec-grid {grid-template-columns:1fr;}}
.spec-item {display:flex;align-items:flex-start;gap:12px;padding:10px 12px;background:#fff;border:1px solid #e3e7eb;border-radius:10px;position:relative;min-height:72px;}
.spec-item .icon {width:34px;height:34px;border-radius:8px;background:var(--primary-color);display:flex;align-items:center;justify-content:center;color:#fff;font-size:.9rem;flex:0 0 auto;box-shadow:0 4px 10px -4px rgba(0,0,0,.18);}
.spec-item .text {flex:1 1 auto;min-width:0;}
.spec-item .text .label {display:block;font-size:.65rem;font-weight:600;letter-spacing:.6px;text-transform:uppercase;color:var(--primary-color);margin-bottom:3px;}
.spec-item .text .value {display:block;font-size:.68rem;line-height:1.05rem;color:#444;letter-spacing:.25px;}
.advanced-specs summary {cursor:pointer;list-style:none;}
.advanced-specs summary::-webkit-details-marker {display:none;}
.advanced-specs summary:before {content:"\f0d7";font-family:'Font Awesome 5 Free';font-weight:900;margin-right:8px;transition:transform .3s;display:inline-block;}
.advanced-specs[open] summary:before {transform:rotate(180deg);}
.advanced-specs table th {width:135px;font-size:.65rem;text-transform:uppercase;letter-spacing:.5px;}
.advanced-specs table td {font-size:.68rem;letter-spacing:.3px;}
.disclaimer {font-size:.6rem;letter-spacing:.5px;}
.carousel-item img {
  height: 400px;
  object-fit: cover;
}
.feature-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.feature-list li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.related-product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}
.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.related-mini {display:flex;flex-direction:row;align-items:stretch;position:relative;background:var(--white);border:1px solid var(--border-color);border-radius:10px;overflow:hidden;min-height:110px;transition:box-shadow .25s ease, transform .25s ease;}
.related-mini:hover {box-shadow:0 10px 24px -8px rgba(0,0,0,.15);transform:translateY(-3px);}
.related-mini .thumb {flex:0 0 110px;max-width:110px;position:relative;background:#f4f8fc;}
.related-mini .thumb img {width:100%;height:100%;object-fit:cover;display:block;}
.related-mini .info {padding:14px 16px;flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0;}
.related-mini .info h6 {font-size:.85rem;font-weight:600;margin:0 0 4px;letter-spacing:.3px;color:var(--primary-color);text-transform:uppercase;}
.related-mini .info p {font-size:.7rem;line-height:1.25rem;letter-spacing:.25px;margin:0;color:#555;display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.related-mini .chevron {flex:0 0 auto;display:flex;align-items:center;padding-right:12px;padding-left:4px;color:var(--primary-color);font-size:.9rem;}
@media (max-width: 576px){.related-mini {min-height:90px;}.related-mini .thumb {flex:0 0 90px;max-width:90px;} .related-mini .info {padding:10px 12px;} .related-mini .info h6 {font-size:.78rem;} .related-mini .info p {line-clamp:2;-webkit-line-clamp:2;}}
.breadcrumb-wrapper {
  background: #f8f9fa;
}

.product-card-modern {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 24px -8px rgba(26,75,132,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid var(--border-color);
  position: relative;
}
.product-card-modern:hover {
  box-shadow: 0 16px 40px -10px rgba(26,75,132,0.18), 0 2px 8px 0 rgba(0,0,0,0.06);
  transform: translateY(-4px) scale(1.025);
}
.product-card-img-wrap {
  width: 100%;
  height: 180px;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.19,1,.22,1);
}
.product-card-modern:hover .product-card-img-wrap img {
  transform: scale(1.08);
}
.product-card-body {
  padding: 1.25rem 1rem 1.1rem 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.product-card-accent {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: var(--secondary-color);
  margin-bottom: 0.7rem;
  margin-top: -1.2rem;
}
.product-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-card-desc {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 0;
  opacity: 0.85;
}
@media (max-width: 576px) {
  .product-card-img-wrap {
    height: 120px;
  }
  .product-card-body {
    padding: 0.85rem 0.7rem 0.8rem 0.7rem;
  }
}

:root {
  --primary-color: #fa4242;
  --secondary-color: #fa4242;
  --dark-color: #333333;
  --light-color: #f4f4f4;
  --page-bg: #f8f9fa;
  --white: #ffffff;
  --surface-light: #f4f8fc;
  --border-color: #e5e9ef;
  --muted: #666666;
  --muted-2: #555555;
  --black: #000000;
  --danger-color: #d4c640;
  --success-color: #28a745;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: var(--page-bg);
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--secondary-color);
}

.navbar .nav-item.active .nav-link {
  color: var(--primary-color);
}

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: .5px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.hero-video-wrap .hero-video,
.hero-video-wrap .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-wrap::after {content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55));z-index:1;}
.hero-video-wrap .container {position:relative;z-index:2;}
.hero-title {text-transform:uppercase;}
.hero-sub {max-width:720px;margin-left:auto;margin-right:auto;}

.premium-section {position:relative;}
.premium-section::before {content:"";position:absolute;inset:0;background:linear-gradient(135deg, rgba(26,75,132,0.05), rgba(230,126,34,0.05));pointer-events:none;}

.product-grid-item {position:relative;overflow:hidden;border-radius:14px;background:var(--white);border:1px solid var(--border-color);margin-bottom:30px;box-shadow:0 5px 18px -6px rgba(0,0,0,.08);transition:all .45s cubic-bezier(.19,1,.22,1);}
.product-grid-item img {width:100%;height:240px;object-fit:cover;transition:transform 1s cubic-bezier(.19,1,.22,1);}
.product-grid-item:hover img {transform:scale(1.12);}
.product-grid-item:hover {transform:translateY(-8px);box-shadow:0 18px 35px -12px rgba(0,0,0,.25);}
.product-grid-caption {position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:18px;background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));color:#fff;}
.product-grid-caption h3 {font-size:1.05rem;margin:0 0 4px;font-weight:600;}
.product-grid-caption p {font-size:.72rem;letter-spacing:.5px;margin:0;opacity:.85;text-transform:uppercase;}

@media (max-width:576px){.product-grid-item img{height:190px;}}

.stats-bar {background:#fff;border-top:1px solid #e9ecef;border-bottom:1px solid #e9ecef;}
.stat-item h3 {font-weight:700;font-size:1.6rem;color:var(--primary-color);}
.stat-item h3 small {font-size:.75rem;font-weight:500;}
.stat-item p {font-size:.75rem;letter-spacing:.5px;text-transform:uppercase;margin-top:4px;color:#555;}

.feature-card {background:var(--white);border:1px solid var(--border-color);border-radius:14px;padding:32px 26px;position:relative;overflow:hidden;transition:box-shadow .3s ease, transform .3s ease;box-shadow:0 4px 14px -4px rgba(0,0,0,.06);}

.feature-card::before {display:none;}
.feature-card .icon-wrap {width:54px;height:54px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--primary-color);color:#fff;font-size:22px;margin-bottom:20px;box-shadow:0 4px 10px -4px rgba(0,0,0,.25);}
.feature-card h3 {font-size:1.15rem;font-weight:600;margin-bottom:10px;}
.feature-card p {font-size:.9rem;line-height:1.4;margin:0;}

.about-us-block p,
.about-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
.feature-card:hover {transform:translateY(-4px);box-shadow:0 12px 26px -10px rgba(0,0,0,.18);}

.section-title.text-start {
    margin-bottom: 1.25rem;
}
.section-title.text-start h2 {
    margin-bottom: 0.5rem;
}

.process-flow .process-steps .step .step-inner {background:#fff;border:1px solid #e5e9ef;padding:26px 16px;border-radius:14px;text-align:center;position:relative;overflow:hidden;transition:all .4s ease;box-shadow:0 4px 14px -6px rgba(0,0,0,.08);}
.process-flow .step-number {width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:var(--primary-color);color:#fff;font-weight:600;margin-bottom:10px;box-shadow:0 4px 10px -4px rgba(0,0,0,.25);}
.process-flow .step h4 {font-size:.95rem;font-weight:600;letter-spacing:.5px;margin-bottom:6px;}
.process-flow .step p {font-size:.75rem;letter-spacing:.3px;margin:0;color:#555;}

.company-highlight {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.about-img {
    min-height: 520px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-img {
        min-height: 350px;
    }
}
.process-flow .step .step-inner:hover {transform:translateY(-6px);box-shadow:0 16px 34px -12px rgba(0,0,0,.25);}

.cta {position:relative;}
.cta::before {content:"";position:absolute;inset:0;background:rgba(26,75,132,0.55);mix-blend-mode:multiply;}
.cta .container {position:relative;z-index:2;}

.opacity-75 {opacity:.75 !important;}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 10px 25px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #d35400;
  border-color: #d35400;
}

.services {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.service-box {
  background: var(--white);
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.about-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-us-block .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}
.about-us-block .section-title h2 {
  margin-bottom: 6px;
  position: relative;
}
.about-us-block .section-title h2::after {
  left: 0;
  transform: none;
  bottom: -6px;
  width: 64px;
}

.products-preview {
  padding: 80px 0;
  background-color: #fff;
}

.product-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.product-card img {
  width: 100%;
  transition: transform 0.3s ease;
}

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

.product-card .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-info {
  transform: translateY(0);
}

.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}

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

  .hero h1 {
    font-size: 2.5rem;
  }
}

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

  .section-title h2 {
    font-size: 2rem;
  }

  .service-box {
    margin-bottom: 20px;
  }
}

.services-content .service-item {
  border-radius: 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.services-content .service-item:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--secondary-color);
}

.services-content .service-icon {
  color: var(--secondary-color);
}

.services-tabs .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.services-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.services-tabs .nav-link:hover:not(.active) {
  background-color: rgba(26, 75, 132, 0.1);
}

.services-content ul {
  list-style: disc;
  padding-left: 20px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.product-card:hover .product-img-container img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-specs {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.product-specs li {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #666;
}

.products-filter .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.products-filter .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.products-filter .nav-link:hover:not(.active) {
  background-color: rgba(26, 75, 132, 0.1);
}

.page-header {
  padding: 100px 0;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;

}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 75, 132, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-info {
  text-align: center;
  color: white;
}

.gallery-info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.gallery-filter .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.gallery-filter .nav-link:hover:not(.active) {
  background-color: rgba(26, 75, 132, 0.1);
}

.news-featured {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-meta {
  font-size: 0.9rem;
  color: #777;
}

.news-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news-item p {
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
}

.read-more:hover {
  color: var(--secondary-color);
}

.sidebar-widget .card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-widget .card-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.sidebar-widget .card-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.sidebar-widget .list-group-item {
  border-left: 0;
  border-right: 0;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.sidebar-widget .list-group-item:hover {
  background-color: rgba(26, 75, 132, 0.05);
}

.news-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.news-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.tags .badge {
  padding: 8px 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tags .badge:hover {
  background-color: var(--primary-color);
  color: white;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: background-color 0.2s ease;
}

.navbar-toggler-icon::before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--primary-color);
  transition: transform 0.22s ease, color 0.2s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  content: "\f00d";
  transform: rotate(0deg) scale(1);
  color: var(--primary-color);
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:focus .navbar-toggler-icon {
  background-color: rgba(0,0,0,0.03);
}

@media (max-width: 576px) {
  .navbar-toggler-icon { width: 40px; height: 40px; }
  .navbar-toggler-icon::before { font-size: 1rem; }
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 45px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .product-img-container {
    height: 200px;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .services-tabs .nav-link,
  .products-filter .nav-link,
  .gallery-filter .nav-link {
    margin-bottom: 5px;
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .gallery-item img {
    height: 200px;
  }

  .news-featured {
    padding: 15px;
  }

  .news-item {
    padding: 15px;
  }
}

.manual-card {transition: all .25s ease; position: relative; overflow: hidden;}
        .manual-card:hover {box-shadow: 0 10px 25px -5px rgba(0,0,0,.15); transform: translateY(-4px);}
        .manual-icon {font-size: 2.2rem;}
        .bg-manual {background: linear-gradient(135deg, var(--primary-color) 0%, #1a4f91 100%);}
        .download-badge {position:absolute; top:12px; right:12px; font-size:.65rem; letter-spacing:.5px;}
        .manual-card a {text-decoration: none;}
        .manual-meta {font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;}
        .manual-search-input {border-radius: 50px; padding-left: 2.75rem;}
        .manual-search-wrapper {position: relative; max-width: 520px; margin: 0 auto;}
        .manual-search-wrapper .fa-search {position: absolute; top: 50%; left: 16px; transform: translateY(-50%); color: #888;}
        .filter-info {font-size: .8rem;}
        .file-size {color: #888; font-size: .7rem;}
        @media (max-width: 575.98px) {
            .manual-icon {font-size: 1.8rem;}
        }

        .card {
            transition: all 0.3s ease;
        }

        .hover-shadow:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }

        .hover-translate {
            transition: transform 0.3s ease;
        }

        .hover-translate:hover {
            transform: translateY(-5px);
        }

        .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .bg-gradient-dark {
            background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
        }

        .border-primary {
            border-color: var(--primary-color) !important;
        }

        .text-primary {
            color: var(--primary-color) !important;
        }

        .bg-primary {
            background-color: var(--primary-color) !important;
        }

        .bg-primary.bg-opacity-10 {
            background-color: rgba(var(--primary-rgb), 0.1) !important;
        }

        .milestone-wrapper {
            position: relative;
        }

        .milestone-item {
            position: relative;
        }

        .counter-section {
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .counter-item {
            padding: 1rem;
        }

        @media screen and (max-width: 768px) {
            .milestone-content, .milestone-date {
                margin-bottom: 1.5rem;
            }

            .order-md-1 {
                order: 1;
            }

            .order-md-2 {
                order: 2;
            }

            .order-md-3 {
                order: 3;
            }
        }

        .product-card {
          border: 1px solid #eee;
          border-radius: 8px;
          overflow: hidden;
          transition: all 0.3s ease;
          background: #fff;
        }
        .product-card:hover {
          box-shadow: 0 10px 20px rgba(0,0,0,0.08);
          transform: translateY(-5px);
        }

        .product-img-container,
        .product-card-img-wrap {
          position: relative;
          overflow: hidden;
          height: 250px;
          background: #f4f8fc;
        }
        .product-img-container img,
        .product-card-img-wrap img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
        }
        .product-card:hover .product-img-container img,
        .product-card-modern:hover .product-card-img-wrap img {
          transform: scale(1.08);
        }

        .about-content .about-img {
          margin-top: 1rem;
          width: 100%;
          height: auto;
          max-height: 420px;
          object-fit: cover;
          display: block;
        }
        .navbar {
          background-color: #fff;
          box-shadow: none !important;
          border: 0 !important;
        }

        .navbar .navbar-collapse,
        .navbar-collapse.show {
          box-shadow: none !important;
          border-top: 0 !important;
        }

        .navbar-toggler {
          border: 0 !important;
          box-shadow: none !important;
        }

        /*Dev 👨🏻‍💻 https://github.com/christliebdela*/

        .profile-img-wrap {
          width: 90px;
          min-width: 90px;
          height: 100px;
          display: flex;
          align-items: stretch;
          justify-content: center;
          overflow: hidden;
          border-radius: 8px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.10);
          background: #f4f8fc;
        }
        .profile-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 0;
          box-shadow: none;
        }

        .flex-grow-1 {
          min-width: 0;
          word-break: break-word;
          font-size: 1rem;
        }

        @media (max-width: 576px) {
          .card-body.d-flex.flex-row.align-items-center {
            flex-direction: row !important;
            align-items: center !important;
            gap: 0.5rem;
            padding: 1rem 0.5rem !important;
          }
          
          .profile-img-wrap {
            width: 54px;
            min-width: 54px;
            height: 60px;
            margin-bottom: 0;
            margin-right: 0.5rem !important;
          }
        }
