body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; color: #333; }
header { background: #fff;}
.navbar{ padding:5px 0;}
.navbar-brand img { height: 80px; }
.navbar-dark .navbar-nav .nav-link{color:#b00000 !important;}
.navbar-dark .navbar-nav .nav-link:hover{ color: #004e8f;}
section { padding: 80px 0; }
h2 { color: #b00000; margin-bottom: 40px; font-weight: 600; }
.card { border: none; box-shadow: 0 0 15px rgba(0,0,0,0.1); border-radius: 10px; }
.btn-custom { background: #b00000 !important; color: #fff !important; transition: transform 0.2s; }
.btn-custom:hover { transform: translateY(-3px); background: #9a0000; }
.highlight { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
footer { background: #333; color: #fff; text-align: center; padding: 20px 0; }
.footer-links a { color: #b00000; margin: 0 8px; text-decoration: none; }
.team-card { transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.bg-grey {
  background-color: #f1f1f1;
}
.top-header {
background-color: #111; /* dark background */
font-size: 14px;
border-bottom: 1px solid #333;
}

.top-header a:hover {
color: #f44336; /* red accent on hover */
}
.navbar{ padding:  0 10px;}
.navbar-dark .navbar-toggler{ background: #9a0000 !important; background-color: #9a0000 !important;}
.price-tag {
  font-size: 2rem;
  font-weight: bold;
  color: #c0392b; /* Deep red tone */
}
.card-img-top {
transition: transform 0.4s ease, box-shadow 0.4s ease;
border-radius: 8px;
}

#products .card {
  padding: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* #products .card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
} */
.Special_5kg{ width: 100%; text-align: center;}
.pricing-comparison .table {
  border: none;
}
.pricing-comparison th, .pricing-comparison td {
  border: none;
  padding: 1rem;
}
.pricing-comparison thead th {
  background: #f1f2f5;
  font-size: 1.1rem;
}
.pricing-comparison .plan-basic { background: #fff; }
.pricing-comparison .plan-standard.highlighted {
  background: #ffece8;
  position: relative;
}
.pricing-comparison .plan-standard.highlighted .badge {
  display: inline-block;
  background: #ff5722;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}
.pricing-comparison .plan-premium { background: #fff; }
.pricing-comparison tbody tr td:first-child {
  text-align: left;
  font-weight: 600;
}
.pricing-comparison tbody td {
  font-size: 1.2rem;
}
.pricing-comparison tbody td:nth-child(2), 
.pricing-comparison tbody td:nth-child(3), 
.pricing-comparison tbody td:nth-child(4) {
  font-size: 1.5rem;
}
.pricing-comparison tfoot td {
  padding-top: 1rem;
  border-top: 2px solid #f1f2f5;
}
.pricing-comparison .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

 /* Sticky Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }


    html {
      scroll-behavior: smooth;
    }

    /* Scroll to top button */
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      background-color: #b00000;
      color: #fff;
      border: none;
      outline: none;
      padding: 12px 16px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    #scrollTopBtn:hover {
      background-color: #920000;
    }

    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 15px;
    }

    footer .footer-links a {
      color: #ffce00;
      margin: 0 8px;
      text-decoration: none;
    }

    footer .footer-links a:hover {
      text-decoration: underline;
    }
#distributors  table th{ font-size: 16px; text-align: left; }
#distributors  table tr td{ font-size: 14px; text-align: left; }
#distributors { padding: 40px;}
.event-wrapper {
  position: relative;
  overflow: hidden;
}

.event-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.event-wrapper:hover .event-img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.event-wrapper:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  color: #fff;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.zoom-icon:hover {
  transform: scale(1.2);
}

