

.hero-banner{
  width:100%;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3)),
    url('https://optycommerce.com/assets/home-banner.webp');
  background-size:cover;
  background-position:center;
  padding:183px 20px;
}




.hero-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* CONTENT */
.hero-content{
  color:#fff;
  max-width:600px;
}

.hero-content h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
  color:#e0e0e0;
}

.hero-btn{
  display:inline-block;
  background:#f5a623;
  color:#fff;
  padding:14px 36px;
  border-radius:30px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
}

/* IMAGE */
.hero-image img{
  max-width:420px;
  width:100%;
}

/* ✅ MOBILE RESPONSIVE */
@media(max-width:768px){
  .hero-banner{
    padding:70px 15px;
    text-align:center;
  }

  .hero-inner{
    flex-direction:column;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-image img{
    max-width:260px;
    margin-top:30px;
  }
}


.after-banner{
  background:#fff;
  padding:80px 20px;
}

.after-banner .container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* Heading */
.after-banner h2{
  font-size:36px;
  line-height:1.4;
  font-weight:700;
  margin-bottom:30px;
  color:#000;
}

/* Paragraphs */
.after-banner p{
  max-width:980px;
  margin:0 auto 20px;
  font-size:17px;
  line-height:1.7;
  color:#333;
}

/* ✅ Mobile Responsive */
@media(max-width:768px){
  .after-banner{
    padding:50px 16px;
  }

  .after-banner h2{
    font-size:24px;
    line-height:1.3;
  }

  .after-banner p{
    font-size:15px;
    line-height:1.6;
  }
}


