
       .examcat-section{
        max-width:1250px;
        margin:40px auto;
        display:flex;
        gap:40px;
        padding:0 20px;
        flex-wrap:wrap;
    }

    /* LEFT BOX */
    .left-box{
        width:48%;
        background:#f4f4f4;
        padding:25px;
        border-radius:20px;
        box-shadow:0 5px 20px rgba(0,0,0,0.1);
        min-width:300px;
    }

    .left-box h2{
        margin:0;
        font-size:18px;
        font-weight:700;
    }

    .view-all{
        float:right;
        margin-top:-30px;
        padding:8px 20px;
        background:#e0e0e0;
        border-radius:20px;
        cursor:pointer;
        font-size:14px;
    }

    .exam-item{
        background:white;
        padding:20px;
        margin-top:25px;
        border-radius:15px;
        font-size:18px;
        font-weight: 800;
        box-shadow:0 3px 10px rgba(0,0,0,0.08);
        cursor:pointer;
        transition:0.2s;
    }

    .exam-item:hover{
        transform:translateY(-3px);
    }

    /* RIGHT BOX */
    .right-box{
        width:48%;
        padding:25px;
        min-width:300px;
    }

    .topic-tag{
        display:inline-block;
        background:#d2f5d2;
        padding:10px 20px;
        border-radius:30px;
        font-size:16px;
        margin-bottom:15px;
    }

    .main-title{
        font-size:20px;
        line-height:50px;
        font-weight:800;
        margin:15px 0;
        color:#03A63C;
    }

    .description{
        font-size:18px;
        color:#333;
        margin:15px 0 35px;
        line-height:28px;
    }

    .btn-box button{
        padding:15px 35px;
        font-size:18px;
        border:none;
        border-radius:12px;
        margin-right:15px;
        cursor:pointer;
        font-weight:600;
        box-shadow:0 3px 10px rgba(0,0,0,0.1);
        transition:.2s;
    }

    .btn1{ background:#9eb6ff; }
    .btn2{ background:#8ec6ff; }
    .btn3{ background:#8fd8ff; }

    .btn-box button:hover{
        transform:translateY(-3px);
    }

    /* ------------ MOBILE RESPONSIVE ------------ */
    @media (max-width:768px) {
        .container {
            flex-direction:column;
            gap:20px;
        }

        .left-box, .right-box {
            width:100%;
            margin:0 auto;
        }

        .main-title{
            font-size:18px;
            line-height:35px;
        }

        .exam-item{
            font-size:14px;
            padding:15px;
        }

        .btn-box button{
            margin-bottom:10px;
            width:100%;
        }

        .topic-tag{
            font-size:14px;
        }
    }

    @media (max-width:480px){
        .main-title{
            font-size:18px;
            line-height:30px;
        }

        .description{
            font-size:16px;
        }

        .exam-item{
            font-size:16px;
        }
    }





  .blog-card {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #e7e7e7;
  }

  .blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-category {
    display: inline-block;
    background: #eef4ff;
    color: #4562ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .blog-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0;
    line-height: 1.3;
  }

  .blog-desc {
    color: #445066;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .author {
    font-size: 14px;
    color: #6b7280;
  }

  .read-btn {
    padding: 8px 12px;
    background: #605bff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 4px 14px rgba(96,91,255,0.2);
  }

  .read-btn:hover {
    background: #4d48f8;
  }
