.blog_hero {
    background-color: #f6e8df;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    padding-top: 160px;
  }
  
  .blog_hero-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  /* Left Section */
  .blog_hero-left {
    flex: 1;
    background-color: #d1eee1;
    border-radius: 20px;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 580;
    width: 285;
  }
  
  .blog_hero-img {
    width: 350px;
    height: auto;
    border-radius: 12px;
  }
  
  .blog_hero-left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .blog_hero-left-text h3 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .blog_hero-logo {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
  }
  
  /* Right Section */
  .blog_hero-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Subscribe bar */
 .subscribe-bar {
    background: linear-gradient(to bottom right, #FFFEFE, #F6EFEF, #F4EAEA);
    padding: 8px 10px;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 650px;
    margin: auto;
  }
  
  .subscribe-bar input {
    flex: 1;
    background-color: #F6EFEF;
    border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 16px;
    color: #333;
  }
  
  .subscribe-bar input::placeholder {
    color: #999;
  }
  
  .subscribe-bar button {
    background: linear-gradient(to right, #f27030, #faaa16);
    border: none;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .subscribe-bar button:hover {
    opacity: 0.9;
  }
  
  /* Blog Cards */
  .blog_hero-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .blog_card {
    background-color: #fff;
    border-radius: 14px;
    padding: 16px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  }
  
  .blog_card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .blog_card p {
    margin: 4px 0;
    font-size: 14px;
    color: #000;
  }
  
  .blog_card .highlighted {
    color: red;
    font-size: 13px;
  }
  
  .blog_card span {
    font-size: 12px;
    color: gray;
  }
  
  /* Floating Icons */
  .floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  
  .floating-icons .icon {
    background-color: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .floating-icons .icon.phone {
    background-color: #ff5e5e;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .blog_hero-wrapper {
      flex-direction: column;
    }
  
 .blog_hero-right {
      width: 100%;
    }
    .blog_hero-left{
      margin-top: -50px;
        width: 100%;
        flex-direction: row;
        text-align: center;
    }

    .blog_hero-img {
        width: 150px;
        height: auto;
        border-radius: 12px;
      }
      .subscribe-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 15px;
        width: 90%;
      }
    
      .subscribe-bar input {
        width: 100%;
        font-size: 15px;
        padding: 10px 14px;
        border-radius: 10px;
      }
    
      .subscribe-bar button {
        width: 100%;
        margin-top: 8px;
        border-radius: 10px;
        padding: 10px 0;
        font-size: 16px;
      }
  
  
    .blog_hero-left-text h3 {
      font-size: 18px;
    }
  }
  

  .post {
    padding: 40px 20px;
    max-width: 1512px;
    margin: auto;
    font-family: "Segoe UI", sans-serif;
  }
  
  .all_post {
    width: 55%;
  }
  
  .popular_post {
    width: 35%;
  }

  .breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
  }
  
  .breadcrumbs a {
    color: #333;
    text-decoration: none;
  }
  
  .post-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* .all_post
 {
    flex: 1;
    min-width: 300px;
  }

  .popular_post {
    flex: 1;
    min-width: 230px;
  } */
  
  .all_post h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }


  .popular_post h2 {
    font-size: 27px;
    margin-bottom: 8px;
  }
  
  hr {
    border: none;
    border-top: 2px solid #ccc;
    margin-bottom: 20px;
  }
  
  .post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }


  .popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  
  
  .post-card,
  .popular-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .post-card img,
  .popular-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .post-text,
  .popular-text {
    padding: 10px;
  }
  
  .post-text h3,
  .popular-text h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .post-text p span,
  .popular-text p span {
    font-size: 13px;
    color: red;
  }
  
  small {
    font-size: 12px;
    color: #777;
  }
  
  .category {
    margin-top: 40px;
  }
  
  .category h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .category ul {
    list-style: none;
    padding: 0;
  }
  
  .category li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .category li span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
  }
  
  .page-btn {
    background: #f90;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .page-btn.active {
    background: #444;
  }
  
  .page-btn:hover {
    background: #222;
  }
  
  @media (max-width: 768px) {
    .post {
      padding: 20px 15px;
    }
  
    .post-wrapper {
      flex-direction: column;
      gap: 30px;
    }
  
    .all_post,
    .popular_post {
      width: 100%;
    }
  
    .all_post h2,
    .popular_post h2 {
      font-size: 22px;
      margin-bottom: 8px;
    }
  
    hr {
      margin-bottom: 15px;
    }
  
    .breadcrumbs {
      font-size: 13px;
      margin-bottom: 15px;
      line-height: 1.4;
    }
  
    .post-grid,
    .popular-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .post-card,
    .popular-card {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      overflow: hidden;
    }
  
    .post-card img,
    .popular-card img {
      width: 100%;
      height: auto;
      border-radius: 10px 10px 0 0;
    }
  
    .post-text,
    .popular-text {
      padding: 12px;
    }
  
    .post-text h3,
    .popular-text h3 {
      font-size: 15px;
      line-height: 1.4;
    }
  
    .post-text p span,
    .popular-text p span {
      font-size: 13px;
      color: red;
      display: inline-block;
      margin-bottom: 5px;
    }
  
    small {
      font-size: 11px;
    }
  
    .category {
      margin-top: 30px;
    }
  
    .category h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }
  
    .category li {
      font-size: 15px;
      margin-bottom: 8px;
    }
  
    .pagination {
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 30px;
    }
  
    .page-btn {
      padding: 6px 12px;
      font-size: 13px;
      border-radius: 10px;
    }
  }
  