.body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

.hero-section {

    background: url("/images/bgimage.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 20px;
}

.hero-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 70px;
 font-family: "Open Sans", sans-serif;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 50vh;
        padding: 15px;
    }

}

@media (max-width: 768px) {
    .hero-section {
        min-height: 30vh;
        text-align: center;
    }
.hero-section h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
 font-family: "Open Sans", sans-serif;
    margin: 0;
}
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 35vh;
        padding: 10px;
    }

    
}

.blog-image-left {
    text-align: left; /* ensures left alignment */
    margin-bottom: 25px;
}

.blog-image-left img {
    width: 100%;
    max-width: 700px;   /* keeps it controlled */
    height: auto;
    display: block;     /* important for left alignment */
  

}
a{
    text-decoration:none;
}
.post-author a,
.post-category a{
    color:#ff5c23;
    text-decoration:none;
    transition:0.3s;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
  
}
.post-date ,
.post-comment {
      font-size: 14px;
    line-height: 26px;
    font-weight: 400;
  
}



.blog-page{
    padding:60px 0;
}

/* =========================================
LEFT CONTENT
========================================= */

.blog-content{
    padding-right:30px;
}

/* META */

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    margin-bottom:30px;
}

.blog-meta span{
    font-size:15px;
    color:#666;
}

.blog-meta i{
    color:#FF5C23;
    margin-right:8px;
}

/* TITLE */

.blog-title{
    font-size:30px;
    line-height:36px;
    font-weight:300;
    color:#1c1c24;
  
}

/* TEXT */

.blog-text p{
    font-size:15px;
    line-height:26px;
    font-weight: 400;
    color:#000;
  
}
.blog-text p span {
        color:#FF5C23;
}

.blog-text h2{
    font-size:20px;
    line-height:30px;
    color:#e35412;
    font-weight:600;
  
}
.blog-text ul{
     font-size:15px;
    line-height:26px;
    font-weight: 400;
    color:#000;
}

.blog-content h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
color: #1c1c24;
}

.blog-content h3 span {
    color: #ff5c23;
}

.blog-content p{
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
color: #000;
}

/* =========================================
POST NAVIGATION BOX
========================================= */

.post-navigation-box{

    border:1px solid #e5e5e5;

    padding:40px;

    background:#fff;

    transition:0.3s;
}

.post-nav-link{

    text-decoration:none;

    display:block;
}

.post-nav-link h3{
    font-size:17px;
 line-height:26px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
    transition:0.3s;
    max-width: 300px;
}

.prev-post{
    font-size:15px;
    color:#666;
    line-height: 26px;
    font-weight: 400;
    transition:0.3s;
}

.post-navigation-box:hover{
    border-color:#ff5b2e;
}

.post-navigation-box:hover h3{
    color:#ff5b2e;
}

.post-navigation-box:hover .prev-post{
    color:#ff5b2e;
}

/* SIDEBAR */

.sidebar{
  flex: 1;
}

.sidebar-box{
  background: #fff;

  padding: 35px;

  margin-bottom: 40px;

  border: 1px solid #e3e3e3;
}

/* SEARCH BOX */

.search-box{
  display: flex;
}

.search-box input{
  flex: 1;

  height: 55px;

  border: 1px solid #ddd;
  outline: none;

  padding: 0 15px;

  font-size: 16px;
}

.search-box button{
  width: 60px;

  border: none;

  background: #ff5a1f;
  color: #fff;

  cursor: pointer;

  font-size: 18px;
}

/* SIDEBAR TITLE */

.sidebar-box h3{
  font-size: 28px;

  margin-bottom: 30px;

  position: relative;
}

.sidebar-box h3::after{
  content: "";

  width: 50px;
  height: 3px;

  background: #ff5a1f;

  position: absolute;
  left: 0;
  bottom: -10px;
}

/* RECENT POSTS */

.recent-posts{
  list-style: none;
  padding: 10px;
}

.recent-posts li{
  padding: 18px 0;

  border-bottom: 1px solid #ececec;
}

.recent-posts a{
  text-decoration: none;
font-size: 14px;
  color: #444;

  line-height: 1.7;

  transition: 0.3s;
}

.recent-posts a:hover{
  color: #ff5a1f;
}

.category-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
 
}

.category-list li:hover {
  color: #ff4a17;
  padding-left: 8px;
}
/* TAGS */

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tags a{
  text-decoration:none;

  padding:8px 12px;

  border:1px solid #e2e2e2;

  color:#555;

  font-size:14px;

  line-height:1.5;

  transition:0.3s;

  background:#fff;
}

.tags a:hover{
  background:#ff5a1f;
  color:#fff;

  border-color:#ff5a1f;
}
.pagination {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

button {
  padding: 8px 12px;
  cursor: pointer;
}
.blog-text a {
    text-decoration: none;
    color: inherit;   /* keeps same text color */
    color: #ff6600;
}

.blog-text a:hover {
    color: #ff6600;   /* optional hover effect */
}
/* new css */

 .blog-link{
    color:#ff5a1f;
    text-decoration:none;
    transition:0.3s;
}

.blog-img {
    width: 700px;
    height: auto;
}

.blog-text h4{
    font-size:24px;
    line-height:24px;
    color:#e35412;
    font-weight:600;
  
}

.blog-image {
    width: 250px;
    height: auto;
}
.blog-content h5{
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
color: #e35412;
}

.img-wrapper{
    text-align:center;
}

.main-blog-img{
    max-width:100%;
    height:auto;
}

.blog-list {
    list-style: none;
    padding: 0;
}

.blog-list i {
    color: #77B255;
    font-size: 16px;
   
}
.supplier-img-wrapper {
    text-align: center;
    margin: 30px 0;
}
.supplier-img {
    width: 300px;
    height: auto;
}
.non-style {
      list-style: none;
    padding-left: 0;
    margin: 0;
}



.comparison-table {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #d9d9d9;
    padding: 10px 10px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table th {
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    color: #666;
}

.comparison-table td {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: #666;
}

/* Column Widths */
.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
    width: 22%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    width: 42%;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    width: 18%;
}

.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
    width: 18%;
}

/* Orange Stars */
.stars {
    color: #f5a623;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
}

.black-tick{
    color:#000;
    font-weight:bold;
}

.conveyor-table-wrapper {
    max-width: 900px;
    margin: 40px auto;
}

.conveyor-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: Arial, sans-serif;
}

.conveyor-table th,
.conveyor-table td {
    border: 1px solid #e5e5e5;
    padding: 24px 20px;
    text-align: center;
    vertical-align: middle;
}

.conveyor-table th {
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    color: #555;
    background: #fff;
}

.conveyor-table td {
    font-size: 15px;
    color: #5d6775;
    line-height: 26px;
    font-weight: 400;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 50px 0 20px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Left & Right boxes */
.blog-nav a {
    flex: 1;
    padding: 20px 25px;
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

/* Divider in middle */
.blog-nav a.prev {
    border-right: 1px solid #e6e6e6;
    text-align: left;
}

.blog-nav a.next {
    text-align: right;
}

/* Hover effect */
.blog-nav a:hover {
    background: #fff;
}

.blog-nav a:hover .nav-title {
    color: #ff6a00;
}

.blog-nav a:hover .nav-label {
    color: #888;
}

/* Labels */
.nav-label {
    display: block;
    font-size: 18px;
    color: #888;
    font-weight: 500;
    margin-bottom: 8px;
}

.nav-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}
/* Titles */
.blog-nav a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-nav {
        flex-direction: column;
    }

    .blog-nav a {
        text-align: left;
        border-right: none !important;
        border-bottom: 1px solid #e6e6e6;
    }

    .blog-nav a:last-child {
        border-bottom: none;
    }
}