:root {
  --primary-color: #283278;
  --secondary-color: #0000fe;
  --accent-color: #eb9f00;
  --dark-bg: #0f172a;
}

html {
  scroll-behavior: smooth;
}

.text-yellow {
  color: var(--accent-color);
}

.text-blue {
  color: var(--secondary-color);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
  font-family: "Montserrat", sans-serif !important;
}

.btn-warning {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

#navbar {
  background-color: rgb(255 255 255 / 25%) !important;
  backdrop-filter: blur(4px);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: top 0.35s ease;
  will-change: top;
  padding: 0;
}

#navbar.hidden {
  top: -100px;
}

h1.display-4.text-yellow.fw-bold.m-0 {
  background-image: -webkit-gradient(
    linear,
    0% 0%,
    80% 100%,
    from(#eb9f00),
    to(#f0c059)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: center;
  text-transform : uppercase;
}

.hero-section {
  background-image: url(/assets/patternbanner.jpg);
  background-size: cover;
  background-position: center;
  padding: 200px 0px 120px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: #0000fe91;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.product-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.stats-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.contact-info {
  background: var(--dark-bg);
  color: white;
  padding: 4rem 0;
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-color);
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

footer {
  background: var(--primary-color);
  color: white;
  padding: 2rem 0 1rem;
}

.owl-carousel .owl-nav button {
  color: var(--primary-color) !important;
  font-size: 2rem !important;
}

.product-category {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.product-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-category h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.product-list {
  list-style: none;
  padding-left: 0;
}

.product-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.product-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

#about {
  img {
    max-height: 300px !important;
    object-fit: cover !important;
  }
  .owl-dots {
    display: none;
  }
}

#products {
  img {
    max-height: 300px !important;
    object-fit: cover !important;
  }
}

.stats-item {
  min-height: 200px;
  display: grid;
  place-content: center;
}

.nav-link.active {
  color: #0d6efd;
  font-weight: 600;
}

.nav-link.active {
  color: #f59e0b !important;
  border-bottom: 2px solid !important;
  font-weight: 500;
  width: fit-content;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  .logo {
    max-width: 300px !important;
  }
  #about {
    .owl-dots {
      display: block !important;
    }
    img {
      max-height: 200px !important;
      object-fit: cover !important;
    }
  }
  #products {
    img {
      max-height: 170px !important;
      object-fit: cover !important;
    }
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .product-category {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .logo {
    max-width: 250px !important;
  }
}

@media (max-width: 388px) {
  nav.navbar.navbar-expand-lg.navbar-light.shadow-sm.sticky-top.shadow {
    top: 20px !important;
  }
}


