:root{
  --primary-color: #16a34a;
  --accent-color: #f59e0b;
  --background-color: #f9fafb;
  --text-color: #111827;
  --border-color: #e5e7eb;
  --bg-white: #ffffff;
  --bg-accent: #f3f4f6;
  --bg-primary:#dc2626; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px!important;
    }
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  /* background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%); */
  background-color: white;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

@media (min-width: 1280px) {
    .container {
        max-width: 1150px!important;
    }
}


@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .7;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prose {
  max-width: 65ch;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose h2 {
  margin-top: 2em;
  margin-bottom: 1em;
}

.prose h3 {
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.bg-primary{
  background-color: var(--bg-primary); 
}
.bg-accent{
  background-color: var(--bg-primary); 
}
.btn-primary{
  background-color: var(--bg-primary);
  color: #FFFFFF;
  border-radius: 5px;
}

.bg-primary-hover{
  background-color: #D25D5D;
}

.text-primary{
  color: var(--bg-primary) 
}
.text-accent{
  color: var(--bg-primary) 
}
.active-link{
  color: var(--bg-primary)!important;
}
/* home-page-css */
  .custom-arrow {
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease; 
  }

  /* When slider is hovered → arrows become visible */
  .hero-slider:hover .custom-arrow {
  opacity: 1;
  }

  /* Arrow positions */
  .slick-prev { left: 10px; }
  .slick-next { right: 10px; }


  .hero-slider .slick-slide {
  margin: 0 !important;
  }

  .hero-slider .slick-list {
  overflow: hidden !important;
  }
  /* home-page-css end*/