/* ================================
   Global Reset
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================================
   Body
================================ */
body {
  font-family: "Montserrat", sans-serif;
}

/* ================================
   Hero Section
================================ */
.hero-section {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #fff;
  padding-top: 2.5rem;
}

.hero-section p {
  font-size: 0.938rem;
  color: #fff;
}

/* Background Image (Top 55%) */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background-image: url('../img/banner-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-section .item a {
  text-decoration: none; 
}
/* Hover Effect */
.hero-section .item a:hover { 
  border: 1 px solid #2378b1; 
}
/* ================================
   Carousel Section
================================ */
#productCarousel {
  position: relative;
} 
/* Carousel Inner Padding */
.carousel-inner {
  padding: 1.25rem 0 0;
}

/* Carousel Controls */
.carousel-control-next,
.carousel-control-prev {
  width: inherit;
}
/* Position nav in the vertical center */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* Allow clicks only on buttons */
  z-index: 2;
}
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 1.125rem;
    margin: -15px;
    padding: 6px 10px;
    background: #2378b1;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #2378b1;
    color: #FFF;
    text-decoration: none;
}
/* Style nav buttons */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  pointer-events: auto;
  width: 40px;
  height: 40px; 
  border-radius: 50%;
  background-color: #2378b1;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.owl-nav button:hover {
  background-color: #1b5e8a;
}
/* ================================
   Product Card
================================ */
.product-card {
  width: 100%;
  min-height: 260px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: inset 0 0 7px #ddd;
  cursor: pointer;
} 

/* Product Title */
.product-card h5 {
  font-size: 1.125rem;
  color: #333;
  font-weight: 600;
}

/* Product Description (4 lines + ellipsis) */
.product-card p {
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 4;  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.938rem;
  line-height: 1.4;
}
.get-it-text {
     color: #2378b1;
    font-weight: 600;
    margin: 0.5rem 0rem 1rem;
    font-size: 0.938rem;
}
/* ================================
   Icon Circle Styles
================================ */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 20px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Light Background Variants */
.bg-light-primary {
  background: #e7f1ff;
  color: #0d6efd;
}

.bg-light-success {
  background: #e9f7ef;
  color: #198754;
}

.bg-light-warning {
  background: #fff3cd;
  color: #ffc107;
}

.bg-light-info {
  background: #e0f7fa;
  color: #0dcaf0;
}

.bg-light-danger {
  background: #fdecea;
  color: #dc3545;
}

/* ================================
   Buttons
================================ */
.btn {
  font-size: 0.875rem;
  padding: 5px 15px;
}

.btn-primary {
  background-color: #829c4c;
  border-color: #829c4c;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: #6b7f3c;
  border-color: #6b7f3c;
  transition: all 0.3s ease-in-out;
}

.btn-outline-secondary {
  color: #666;
  border-color: #666;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6b7f3c;
  border-color: #6b7f3c;
  transition: all 0.3s ease-in-out;
}

/* ================================
   Navbar
================================ */
.navbar-brand-logo {
  max-width: 220px;
}

.fixed-top {
  position: sticky !important;
  top: 0;
  left: 0;
  z-index: 1030;
}

/* ================================
   Stats Section
================================ */
.stats-section .stats-inner-wraper {
  background: #f3fbff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 1rem 0 1.5rem;
  box-shadow: inset 0 0 7px #ddd;
}

.stats-section .stats-inner-wraper p {
  margin-bottom: 0;
}

/* ================================
   Footer
================================ */
.product-footer {
  background: #333;
  color: #fff;
  padding: 0.5rem 0.625rem; 
  width: 100%;
  font-size: 0.813rem;
  position: fixed;
  bottom: 0;
}
 
/* ================================
   Utility Classes
================================ */
.text-primary {
  color: #2378b1 !important;
}