@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800&display=swap');

.commercial-chicks-section {
  padding: 100px 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.commercial-chicks-section .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* WATERMARK "justran" */
.commercial-chicks-section::before {
  content: "Justran farm";
  position: absolute;
  top: 30px;
  right: 8%;
  font-size: 200px;
  font-weight: 800;
  color: #f3f4f6; 
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  text-transform: lowercase;
  letter-spacing: -8px;
}

/* HEADING */
.commercial-chicks-section .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827; /* almost black */
  margin: 0 0 25px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* PARAGRAPH */
.commercial-chicks-section .section-text {
  font-size: 15.5px;
  font-weight: 400;
  color: #4b5563; /* grey */
  line-height: 1.8;
  margin: 0 0 20px 0;
  max-width: 1000px;
}

/* THIN LINE UNDER TEXT */
.commercial-chicks-section .divider {
  width: 40px;
  height: 2px;
  background: #d1d5db;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .commercial-chicks-section { padding: 70px 6%; }
  .commercial-chicks-section .section-title { font-size: 32px; }
  .commercial-chicks-section::before { font-size: 120px; opacity: 0.3; }
}

@media (max-width: 600px) {
  .commercial-chicks-section .section-text { font-size: 14.5px; }
}


.hero-section{
    padding:22px 0;
    background:#fff;
}

.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

.hero-section h1{
    font-size:58px;
    font-weight:700;
    color:#1b1b1b;
    line-height:1.1;
    margin-bottom:16px;
    letter-spacing:-1px;
}

.hero-section p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    max-width:1200px;
}

.commercial-chicks-section input{
  background-color: green;
  color: black;
  border-radius: 10px;

}



.divider{
    width:100%;
    height:2px;
    background:#7b9d4d;
    margin:22px 0;
}

.features{
    display:flex;
    gap:45px;
    flex-wrap:wrap;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#8b8b8b;
    font-size:15px;
    font-weight:500;
}

.icon{
    font-size:18px;
    color:#7b9d4d;
}

/* Responsive */

@media(max-width:992px){

.hero-section h1{
    font-size:42px;
}

.hero-section p{
    font-size:15px;
}

.features{
    gap:20px;
}

}

@media(max-width:768px){

.hero-section{
    padding:30px 0;
}

.hero-section h1{
    font-size:34px;
}

.hero-section p{
    font-size:14px;
    line-height:1.7;
}

.features{
    flex-direction:column;
    gap:15px;
    
}
}