@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
}


:root {
  --primary-color: rgb(0, 114, 188);
  --primary-color-hover: rgb(0, 95, 153);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */

.btn {
  font-size: 13px;
  border-radius: 30px;
  padding: 12px 24px;
}

.btn-primary {
  background: var(--primary-color);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--primary-color-hover);
  border: 1px solid var(--primary-color-hover);
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-top {
  background: linear-gradient(120deg, rgba(0, 114, 188, 0.95), rgba(0, 114, 188, 0.82));
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.header-top-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-top-item:hover {
  color: #fff;
}

.header-top-right .pill {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.main-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b5563;
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 114, 188, 0.08);
  box-shadow: 0 8px 20px rgba(0, 114, 188, 0.14);
}

.navbar-toggler {
  border: 1px solid rgba(0, 114, 188, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(0, 114, 188, 0.06);
  transition: all 0.25s ease;
}

.navbar-toggler:hover {
  background: rgba(0, 114, 188, 0.12);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 114, 188, 0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 114, 188, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 114, 188, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-email-btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* About section */

.section {
  padding: 20px 0px;
}


.about-shell {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  padding: 32px 24px;
}

.about-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 114, 188, 0.12),
      transparent 35%
    ),
    radial-gradient(circle at 80% 10%, rgba(0, 114, 188, 0.08), transparent 40%);
  z-index: 0;
}

.about-shell > .row {
  position: relative;
  z-index: 1;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.08);
  padding: 32px 28px;
  height: 100%;
}

.about-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pill-primary {
  background: rgba(0, 114, 188, 0.1);
  color: var(--primary-color);
  border-color: rgba(0, 114, 188, 0.18);
}

.pill-soft {
  background: #f5f7fb;
  color: #0b1524;
  border-color: rgba(11, 21, 36, 0.08);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #a0a6b3;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #0b1524;
}

.section-description {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 14px 0 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1f2937;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
}

.feature-list i {
  color: var(--primary-color);
  font-size: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card {
  background: linear-gradient(
    135deg,
    rgba(0, 114, 188, 0.12),
    rgba(0, 114, 188, 0.05)
  );
  border: 1px solid rgba(0, 114, 188, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0b1524;
}

.stat-label {
  font-size: 12px;
  color: #4b5563;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  isolation: isolate;
}



.visual-blur {
  position: absolute;
  width: 72%;
  height: 72%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 114, 188, 0.22),
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 114, 188, 0.16), transparent 50%);
  filter: blur(16px);
  z-index: 0;
}

.about-visual img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.floating-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.floating-badge i {
  color: var(--primary-color);
  font-size: 16px;
}

.floating-badge strong {
  display: block;
  font-size: 13px;
  color: #0b1524;
}

.floating-badge small {
  display: block;
  font-size: 11px;
  color: #6b7280;
}

.production-gallery {
  margin-top: 18px;
  padding: 6px 0 4px;
}

.production-gallery .swiper-wrapper {
  padding-bottom: 6px;
}

.production-gallery .swiper-slide {
  border-radius: 14px;
  overflow: hidden;

}

.production-gallery .swiper-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.production-gallery .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.production-gallery .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Products section */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: 0 18px 56px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.product-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 114, 188, 0) 0%,
    rgba(0, 114, 188, 0.15) 100%
  );
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.35s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.09);
}

.product-body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #0b1524;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 6px;
  flex: 1;
}

.product-body .btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 114, 188, 0.25);
}

.product-body .btn:hover {
  box-shadow: 0 14px 40px rgba(0, 114, 188, 0.32);
}

/* Benefits section */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 114, 188, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 80% 0%, rgba(0, 114, 188, 0.08), transparent 38%);
  opacity: 0.8;
  z-index: 0;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 114, 188, 0.12);
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1524;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.benefit-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.catalog-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0, 114, 188, 0.08), #ffffff);
  border: 1px solid rgba(0, 114, 188, 0.12);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.catalog-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 114, 188, 0.12), transparent 62%);
  top: -90px;
  right: -80px;
  pointer-events: none;
}

.catalog-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 4px 6px;
  max-width: 720px;
}

.catalog-title {
  font-size: 24px;
  font-weight: 700;
  color: #0b1524;
  margin: 0;
  letter-spacing: 0.01em;
}

.catalog-text {
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 6px;
}

.catalog-points {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.catalog-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #1f2937;
}

.catalog-points i {
  color: var(--primary-color);
  font-size: 12px;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-shell {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  padding: 26px 22px;
}

.contact-shell .row {
  align-items: stretch;
}

.contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-list {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f9fafb;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-list .icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 114, 188, 0.08);
  color: var(--primary-color);
}

.contact-list .content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.contact-list .value {
  font-size: 13px;
  color: #111827;
}

.contact-list a.value:hover {
  color: var(--primary-color);
}

.contact-map-wrapper {
  height: 100%;
}

.contact-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.2);
  height: 100%;
  min-height: 260px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
}



/* Product Single Page */
.product-single-left .about-visual {
  justify-content: flex-start;
}

.product-single-thumbnail {
  max-width: 500px;
  margin: 0;
}

/* Mobile Menu Offcanvas */

.offcanvas {
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: -12px 0 48px rgba(15, 23, 42, 0.12);
}

.offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(0, 114, 188, 0.04), #ffffff);
}

.mobile-menu-logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
}

.offcanvas-header .btn-close-text {
  background: rgba(0, 114, 188, 0.1);
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 114, 188, 0.15);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
  opacity: 1;
}

.offcanvas-header .btn-close-text:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  opacity: 1;
  transform: translateX(-2px);
}

.offcanvas-header .btn-close-text:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 114, 188, 0.25);
}

.offcanvas-header .btn-close-text i {
  font-size: 14px;
}

.offcanvas-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.mobile-nav-link i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  transition: all 0.25s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 114, 188, 0.08);
  border-color: rgba(0, 114, 188, 0.15);
  box-shadow: 0 8px 20px rgba(0, 114, 188, 0.12);
  transform: translateX(4px);
}

.mobile-nav-link:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.mobile-nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 114, 188, 0.12);
  border-color: rgba(0, 114, 188, 0.2);
  box-shadow: 0 8px 20px rgba(0, 114, 188, 0.16);
}

.mobile-nav-link.active i {
  color: var(--primary-color);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-actions .btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 114, 188, 0.2);
}

.mobile-menu-actions .btn:hover {
  box-shadow: 0 12px 32px rgba(0, 114, 188, 0.28);
  transform: translateY(-2px);
}

.mobile-menu-actions .btn-outline-primary {
  box-shadow: 0 4px 16px rgba(0, 114, 188, 0.12);
}

.mobile-menu-actions .btn-outline-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 114, 188, 0.2);
}

/* Offcanvas backdrop */
.offcanvas-backdrop {
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Smooth transitions for offcanvas */
.offcanvas {
  transition: transform 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  isolation: isolate;
}

#heroCarousel {
  height: 100%;
  max-height: 450px;
}

#heroCarousel .carousel-inner {
  height: 100%;
  max-height: 450px;
}

#heroCarousel .carousel-item {
  height: 100%;
  max-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 114, 188, 0.85) 0%,
    rgba(0, 114, 188, 0.75) 50%,
    rgba(0, 95, 153, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-description {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Glassmorphism Button Secondary */
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary i {
  font-size: 14px;
}

/* Hero Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 10;
}

#heroCarousel .carousel-control-prev {
  left: 20px;
}

#heroCarousel .carousel-control-next {
  right: 20px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Hero Carousel Indicators */
#heroCarousel .carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
  z-index: 10;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

#heroCarousel .carousel-indicators button.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/*/ INSERT_YOUR_CODE */

/* =====================
   Breakpoints & Responsiveness
   ===================== */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .header-top-inner {
    justify-content: center;
  }

  .navbar-brand img {
    max-height: 48px;
  }

  .catalog-banner {
    padding: 20px 18px;
  }

  .contact-shell {
    padding: 20px 16px;
  }

  .btn {
    font-size: 11px;
    padding: 8px 18px;
  }

  .navbar-nav .nav-link {
    font-size: 11px;
    padding: 8px 10px;
  }

  .header-top-item {
    font-size: 10px;
    padding: 4px 10px;
  }

  .mobile-menu-logo img {
    max-width: 120px;
    max-height: 50px;
  }

  .offcanvas-header {
    padding: 16px 20px;
  }

  .offcanvas-body {
    padding: 20px 16px;
  }

  .mobile-nav-link {
    padding: 12px 14px;
    font-size: 13px;
  }

  .mobile-nav-link i {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .mobile-menu-actions .btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .section-title {
    font-size: 11px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-description {
    font-size: 12px;
  }

  .product-title {
    font-size: 13px;
  }

  .hero-section {
    max-height: 500px;
  }

  #heroCarousel {
    max-height: 500px;
  }

  #heroCarousel .carousel-inner {
    max-height: 450px;
  }

  #heroCarousel .carousel-item {
    max-height: 450px;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }

  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    display: none;
  }

  #heroCarousel .carousel-indicators {
    bottom: 20px;
  }

  #heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/* Footer */

.site-footer {
  margin-top: 30px;
  background: #f9fafb;
  color: #111827;
}

.footer-top {
  padding: 28px 0 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 0;
  font-size: 11px;
  color: #6b7280;
  background: #f3f4f6;
}

.footer-block {
  font-size: 13px;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111827;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 12px;
}

.footer-cta {
  font-size: 12px;
  padding: 8px 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #111827;
}

.footer-list i {
  margin-top: 2px;
  color: var(--primary-color);
}

.footer-list a {
  color: inherit;
}

.footer-list a:hover {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
}

.footer-links a {
  font-size: 12px;
  color: #374151;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #111827;
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
}

.footer-madeby-logo {
  height: 18px;
  width: auto;
  margin: 0 4px;
  vertical-align: middle;
  filter: grayscale(1);
  opacity: 0.45;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.footer-madeby:hover .footer-madeby-logo {
  filter: none;
  opacity: 1;
}

