body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  scroll-behavior: smooth;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {   
    max-width: 200px;
}

.navbar {
  background: transparent;
  transition: 0.3s;
}

.navbar.scrolled {
  background: #000 !important;
}


.navbar-nav .nav-link {
  padding: 10px 15px;
  color: #fff !important;
}

.nav-link:hover {
  color: #afe607 !important;
}

.hero {
  height: 100vh;
  background: url('img/bg.jpg') no-repeat center/cover;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  top: 0;
  left: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.btn-green {
  background: #73bc36;
  color: #000;
  border: none;
  padding: 10px 40px;
}

.btn-green:hover {
  background: #fff;
  color: #000;
}

.btn-whatsapp {
  background: #25d366;
  color: #000;
  border: none;
}
.btn-whatsapp:hover {
  background: #54f08d; 
  color: #000;
}
.product-card {
  background: #111;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  height: 400px;
  object-fit: cover;
}

footer {
  background: #000;
  color: #fff;
}
#contact i{
    color:#73bc36 !important;
}
.social i{
  font-size: 28px;
}
.social a{
  color:#73bc36;
}

.ticker-section {
  background: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.ticker-section::before,
.ticker-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-section::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.ticker-section::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerMove 20s linear infinite;
}

.ticker-track span {
  font-size: 64px;
  font-weight: 700;
  color: #73bc36;
  text-transform: uppercase;
  padding-right: 60px;
  letter-spacing: 1px;

  color: transparent; 
  -webkit-text-stroke: 1.5px #73bc36; 
  transition: 0.3s;
}
.ticker-track span:hover {
  color: #73bc36;
}

@keyframes tickerMove {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.ticker-track {
  will-change: transform;
}

@media (max-width: 991px) {
.navbar-collapse {
  background: #000;
}
}

@media (max-width: 768px) {
.navbar-brand img {   
    max-width: 120px;
  }
.hero {
  height: 50vh;
}
 .ticker-track span {
    font-size: 32px;
  }
}