    .blogs-wrapper {
      margin: 100px 0px auto;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      align-items: flex-start;
    }

    .blog-card {
      width: 385px;
      height: 550px;
      display: flex;
      flex-direction: column;
      background: linear-gradient(145deg, #ffffff, #f3f6f9);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(8, 38, 74, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
      position: relative;
      border: 1px solid #e3e9f4;
    }

    .blog-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg,
          rgba(13, 110, 253, 0.1),
          rgba(79, 172, 254, 0.1));
      z-index: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: inherit;
    }

    .blog-card:hover::before {
      opacity: 1;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 26px rgba(8, 38, 74, 0.12);
      border: 1px solid #d0e3ff;
    }

    .blog-card img {
      width: 100%;
      height: 320px;
      object-fit: fill;
      border-bottom: 1px solid #eaeef3;
      position: relative;
      z-index: 1;
    }

    .card-content {
      padding: 20px;
      position: relative;
      z-index: 1;
      background: transparent;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
      background: transparent;
      z-index: 1;
    }

    .card-content h1 {
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .card-content h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #08264a;
      font-weight: 600;
    }

    .card-content p {
      font-size: 16px;
      color: #444;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    .card-content a {
      text-decoration: none;
      color: #007bff;
      font-weight: 600;
      font-size: 14px;
      transition: color 0.2s;
    }

    .card-content a:hover {
      color: #084298;
      text-decoration: underline;
    }

    .blog-footer {
      text-align: center;
      padding: 30px 20px;
      background: #fafafa;
      font-size: 14px;
      color: #888;
      border-top: 1px solid #eee;
    }

    #backToTop {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: rgb(153, 204, 252);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 50px;
      font-size: 1.5rem;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    #backToTop:hover {
      background-color: rgb(118, 182, 243);
    }

    @media (max-width: 768px) {
      .blogs-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .blog-card {
        width: 90%;
        height: auto;
      }

      .blog-card img {
        height: auto;
      }
    }